Rails:使用嵌套路由/表单有什么好处
我开始使用一些嵌套路线,这绝对是一种不同的规划方式,而且我真的没有看到额外的好处。
那么它们是什么?
I am starting to use some nested routes which is definitely a different way of planning things and I'm really failing to see added benefits.
So what are they?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它允许您保持 Restful 状态并自动路由涉及多个模型的 URL。
因此,如果您有一个包含许多帖子的用户模型,您可以将帖子模型嵌套在用户模型中,并进行这样的调用,
自动路由到帖子控制器的索引操作。
该调用将通过将用户 ID 作为参数传递, 可以用来显示该用户的所有帖子。
获取更多信息的好链接 http://guides.rubyonrails.org/routing.html #嵌套资源
It allows you stay Restful and automatically route urls where more than one model is involved.
So if you have a user model that has many posts, you can nest the posts model in the user model and make a call like this
which would route automagically to the index action of the Posts Controller via
passing the user id as a parameter that you can use to display all the posts just for that user.
A good link to get more info http://guides.rubyonrails.org/routing.html#nested-resources