Rails URL 中的标签链接

发布于 2024-10-28 04:10:56 字数 156 浏览 2 评论 0原文

我想在我的 Rails 应用程序中实现标签,但我在该实现的一项特定功能方面遇到了麻烦。您会看到,我想让用户能够在 url 方案中指定多个标签,例如 http://domain/tags/:id1/:id2/...。有没有人在 Rails 中实现过类似的东西或者知道如何做?

I want to implement tags in my Rails application but I'm having trouble with one specific feature of that implementation. You see I want to make it possible for users to specify multiple tags in the url scheme, something like http://domain/tags/:id1/:id2/.... Has anyone implemented something like this in Rails or know how to do it?

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

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

发布评论

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

评论(1

少钕鈤記 2024-11-04 04:10:56

您想要名为“Route Globbing”的东西:

match 'tags/*tag_ids' => 'tags#lots_of_tags'

然后在 lots_of_tags 操作中,您将拥有 params[:tag_ids] 提供的标签 ID 数组或 形式的字符串id1/id2(不确定是哪一个,你自己测试一下)。

有关此内容的更多信息,请参阅 rails 指南

You want something called "Route Globbing":

match 'tags/*tag_ids' => 'tags#lots_of_tags'

Then in lots_of_tags action you'd have params[:tag_ids] array of provided tag ids or a string in form of id1/id2 (not sure which one, you should test it by yourself).

More info on this in rails guides:

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