当前位置:  开发笔记 > 后端 > 正文

Rails,在尝试使用put http方法的表单中遇到麻烦

如何解决《Rails,在尝试使用puthttp方法的表单中遇到麻烦》经验,为你挑选了1个好方法。

如果您正在使用RESTful资源(并且您应该使用),请尝试使用form_fornot 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文档了解更多信息.



1> 小智..:

如果您正在使用RESTful资源(并且您应该使用),请尝试使用form_fornot 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文档了解更多信息.

推荐阅读
依然-狠幸福
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有