RoR 路由错误:从 link_to 构建的 URL,路由出现在 rake 路由中

发布于 2024-12-06 17:34:27 字数 658 浏览 0 评论 0原文

routes.rb

resources :project_associations, :only => [:update]

rake 路由

project_association PUT    /project_associations/:id(.:format)  {:action=>"update", :controller=>"project_associations"}

ERB

<%= link_to membership_command[:text], project_association_path(membership_command[:id], :command => membership_command[:command])%>

结果 HTML

<a href="/project_associations/2011?command=suspend">Suspend</a>

点击结果: 路由错误 没有路由匹配“/project_associations/2011”

我踢了服务器,结果相同

提前感谢您的帮助。

routes.rb

resources :project_associations, :only => [:update]

rake routes

project_association PUT    /project_associations/:id(.:format)  {:action=>"update", :controller=>"project_associations"}

ERB

<%= link_to membership_command[:text], project_association_path(membership_command[:id], :command => membership_command[:command])%>

Resulting HTML

<a href="/project_associations/2011?command=suspend">Suspend</a>

Click result:
Routing Error
No route matches "/project_associations/2011"

I kicked the server, same result

Thanks in advance for any assistance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

月下客 2024-12-13 17:34:27

将其添加到 link_to 中: :method => :放

所以:

    <%= link_to membership_command[:text], project_association_path(membership_command[:id], :command => membership_command[:command]), :method => :put %>

Add this to the link_to: :method => :put.

So:

    <%= link_to membership_command[:text], project_association_path(membership_command[:id], :command => membership_command[:command]), :method => :put %>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文