解决方法
真的很简单在你看来,有一个这样的链接/按钮.重要的一点是:remote =>真正
<%= link_to 'Update Thingy',update_thingy_path,:confirm => 'You sure you wanna update?',:remote => true %>
要么
<%= button_to('Update Thingy',{:action => 'update_thingy',:thingyid => 314},:method => :get,:remote => true) %>
显然,你必须得到update_thingy_path来解决一些正常的动作.不同的是当你渲染你要渲染一些* .js.erb而不是* .html.erb.在update_thingy.js.erb中,您只需要在客户端中放置任何要运行的JavaScript.您可能想通知用户更新发生了例如(在jQuery中):
$('#notice').html("Thingy was update.")
或者如果您返回的javascript非常简单,那么在控制器中,您可以执行以下操作,而不是使用一个完整的js.erb作为单行.
render :js => "alert('Blah')"