在我看来,单击单选按钮时,答案将发布到数据库中,无需渲染任何内容,但我收到了 406 消息。
应用程序.js:
$('.submittable').live('change', function() {
$(this).parents('form:first').submit();
return false;
});
控制器:
def update_result
...
render :nothing => true
end
看法:
<%= form_tag update_result_answers_path, 'data-ajax' => false do %>
...
<% end %>
谢谢