除了$.getScript("/comments.js
部分外,一切似乎都正常。我試圖解決它,但沒有運氣。
我有我的application.js
文件,該文件有:
$(function() {
setTimeout(test, 1000);
});
function test() {
$.getScript("/comments.js")
setTimeout(test, 1000);
}
$.getScript("/comments.js", function(){
updateComments();
});
和我的意見index.js.erb的/評論
function updateComments(){
alert("testing");
}
我的意見控制器
def index
# ...
end
佈局/ application.html.erb
<%= stylesheet_link_tag "application" %>
<%= javascript_include_tag "application" %>
<%= csrf_meta_tags %>
我只是想看看我能不能讓它工作,但它什麼都不做。
您是否在使用資產管道?,在這種情況下,我認爲是路由問題 – eveevans 2012-02-07 20:27:24