如何向 Rails 中的嵌套资源添加额外的休息路线
我有一个有很多链接的小部件。在路由文件中:
map.resources :widgets, :has_many => [:links]
我想向链接添加“排序”操作。我需要在路由文件中添加什么,以便我可以编写 sort_widget_links_path(widget)
I have a widget that has many links. In the routes file:
map.resources :widgets, :has_many => [:links]
I want to add a "sort" action to links. What do I need to add to the routes file, so I can write sort_widget_links_path(widget)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用块来定义它:
You can define it using a block: