Rails:使用嵌套路由/表单有什么好处

发布于 2024-09-01 08:59:30 字数 65 浏览 8 评论 0原文

我开始使用一些嵌套路线,这绝对是一种不同的规划方式,而且我真的没有看到额外的好处。

那么它们是什么?

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 技术交流群。

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

发布评论

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

评论(1

背叛残局 2024-09-08 08:59:30

它允许您保持 Restful 状态并自动路由涉及多个模型的 URL。

因此,如果您有一个包含许多帖子的用户模型,您可以将帖子模型嵌套在用户模型中,并进行这样的调用,

<%=link_to "Users posts", user_posts_path(@user) %>

自动路由到帖子控制器的索引操作。

/users/4/posts

该调用将通过将用户 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

<%=link_to "Users posts", user_posts_path(@user) %>

which would route automagically to the index action of the Posts Controller via

/users/4/posts

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文