通过 Vanity gem 生成的路线,我可以使用什么 Rails 路线助手?

发布于 2024-12-04 01:18:47 字数 434 浏览 1 评论 0原文

这是 Vanity gem 生成的路由:

controller :vanities do 
  match ':vname' => :show, :via => :get, :constraints => {:vname => /[A-Za-z0-9\-\+]+/}
end

这是 rake 路由:

GET    /:vname(.:format)                       {:vname=>/[A-Za-z0-9\-\+]+/, :controller=>"vanities", :action=>"show"}

如何使用 Rails 链接助手直接链接到 URL mydomain.com/vname

This is the route the Vanity gem generates:

controller :vanities do 
  match ':vname' => :show, :via => :get, :constraints => {:vname => /[A-Za-z0-9\-\+]+/}
end

This is the rake routes:

GET    /:vname(.:format)                       {:vname=>/[A-Za-z0-9\-\+]+/, :controller=>"vanities", :action=>"show"}

How do I use the Rails link helper to link directly to URL mydomain.com/vname?

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

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

发布评论

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

评论(1

猥琐帝 2024-12-11 01:18:47

从我的脑海中(抱歉,我现在没有时间测试它):

controller :vanities do 
  match ':vname' => :show, :via => :get, :constraints => {:vname => /[A-Za-z0-9\-\+]+/}, :as => :vanity
end

你可以这样使用:

vanity_path(:vname => "marcamillion")

From the top of my head (sorry, I don't really have the time to test it right now):

controller :vanities do 
  match ':vname' => :show, :via => :get, :constraints => {:vname => /[A-Za-z0-9\-\+]+/}, :as => :vanity
end

which you would use like this:

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