如果您正在使用RESTful资源(并且您应该使用),请尝试使用form_for
not form_tag
...使用如下完整设置:
<% form_for :user, @user, :url=>user_path(@user), :html=>{:method=>:put} do |f| %> #this scopes the form elements to the @user object, eg. <%= f.text_field :first_name %> <% end %>
查看API文档了解更多信息.
如果您正在使用RESTful资源(并且您应该使用),请尝试使用form_for
not form_tag
...使用如下完整设置:
<% form_for :user, @user, :url=>user_path(@user), :html=>{:method=>:put} do |f| %> #this scopes the form elements to the @user object, eg. <%= f.text_field :first_name %> <% end %>
查看API文档了解更多信息.