我的js.erb
文件不會出現在Rails 3.1.2中,它讓我很困惑。我將它包含在app/views/items
中。我有這個:如何讓我的js.erb文件呈現?
respond_to do |format|
format.html { render :action => :index }
format.js {render :content_type => 'text/javascript' }
end
它的名字是否正確。我嘗試過不同的名稱組合,但我甚至不知道js.erb如何被包含,因爲它不在我的源代碼中。我在js.erb
中放置了一個alert('hello');
,它不會運行。
告訴我們顯示的錯誤 – tybro0103
如果我到localhost/items/index.js,我可以看到js文件。它不包括,雖然 – Louis