3

我想在我的表单助手中放置一个路由助手来执行update操作:

<%= s3_uploader_form post: <route helper goes here>, as: "shop[logo_ori]" do %>
  <%= file_field_tag :file %>
<% end %>

但是当我跑步时,rake routes我看不到帮助者PUT

shops     GET    /shops(.:format)                     shops#index
          POST   /shops(.:format)                     shops#create
new_shop  GET    /shops/new(.:format)                 shops#new
edit_shop GET    /shops/:id/edit(.:format)            shops#edit
shop      GET    /shops/:id(.:format)                 shops#show
          PUT    /shops/:id(.:format)                 shops#update

有问题的表单助手来自 Railscasts#383's source。我发现上传器表单对于创建新模型对象非常有用,但我很难让它用于更新模型对象。

当我尝试 route helpershops_url时,它运行失败的POST操作:

Started POST "/shops" for 127.0.0.1 at 2012-12-27 01:10:22 +0800
Processing by ShopsController#create as */*
Parameters: {"shop"=>{"logo_ori"=>"https://bucket.s3.amazonaws.com/example.gif"}}
User Load (0.4ms)  SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
(0.1ms)  BEGIN
(0.1ms)  ROLLBACK
<additional output redacted>

有什么帮助吗?

4

2 回答 2

5

虽然 HTTP 和 rack 支持使用 PUT 方法,但浏览器不支持。因此,为了欺骗 put 请求,您需要向您_method=put发布的 url 添加一个参数。

rails 中的链接看起来像:

<%= link_to "update me", "/link/to/resource", method: :put %>
于 2012-12-26T18:13:18.347 回答
3

与 show - "shop_path" 相同,因为它指的是相同的 URL。不同的只是方法。Theese Rails 路由助手只指向 url,而不是它的方法,这就是为什么在这种情况下它们是相同的。顺便说一句 - 方法应该是“put:”,而不是“post:”(作为表单助手的参数)

于 2012-12-26T17:58:51.000 回答