我在 Rails 3 中有一个表单,必须使用普通帖子提交,就像这样
<%= form_for @seller, :as => :seller_user, :url => save_seller_url do |f| %>
但是里面的一个字段需要执行一个远程ajax调用来更新一些值,比如这个
<%= f.select( ... ) %> => on change please make a remote call to fill new data here
我没有在网上找到任何文档来将:remote => true选项添加到选择助手中,我错过了什么吗?
处理这个的正确方法是什么?
谢谢