1
如何在呈現json頁面後執行jQuery js?Rails 3 - 呈現JSON後呈現JS
respond_to do |format|
format.html
format.json { render :partial => "tables" }
format.js
end
的tables.json.erb獲取呈現,但js.erb文件沒有。
如何在呈現json頁面後執行jQuery js?Rails 3 - 呈現JSON後呈現JS
respond_to do |format|
format.html
format.json { render :partial => "tables" }
format.js
end
的tables.json.erb獲取呈現,但js.erb文件沒有。
js.erb中的代碼不會被執行,它是爲了js響應。
您應該在ajax成功回調函數中編寫代碼。
例如:
$.getJSON('your_request_uri', function(data){
// write your code here.
});