我在“铁路”3号上使用Ruby,有一页,有一份评论清单,我希望在用户发表评论时,用Ajax显示一种形式。
迄今为止,我有一份部分名称为_form_comment.html.erb
和html。 这一点没有问题。
认为,这是
link_to "Reply", {:controller => "catalog", :action => "form_comment", :id => c.id}, :remote => true, :class => "btn_reply_comment"
在控制人员中,我补充说,每当一个
def form_comment
if request.xhr?
render:partial => "form_comment"
end
end
And, in order to "do something" with the response, I have this script
$(document).ready(function(){
$(".btn_reply_comment")
.bind("ajax:success",
function() { alert("Ajax response"); });
});
当我发布
我能做些什么?