叫我的應用程序我有一些代碼,一個控制器動作..顯示在軌道的提示信息,如果控制器從jQuery的
users_controller.rb
def my_method(age)
if age >18
flash[:notice]= "You are eligible."
else
flash[:notice]= "You are not eligible."
end
end
我M利用jQuery的調用my_method ... (編碼是在提交的jQuery對話框按鈕)
jQuery.post('/users/my_method/', { age: jQuery('#age').val() });
但它不顯示Flash的消息,但在日誌中我見過的方法「my_method」被調用。告訴我如何顯示這些Flash消息?
MESSAGE_ID將是佈局的控制器(股利或別的什麼)? –
它的消息的div id顯示html :) – sameera207