如何向 Rails 中的命名路由添加 :format 选项?

发布于 2024-08-25 13:04:00 字数 299 浏览 12 评论 0原文

我有一个名为 profile 的命名路由,我希望能够以 json 形式访问它。但是当我查看 rake 路由输出时,我发现 (.:format) 丢失了。如何将其添加到命名路由?

user GET    /users/:id(.:format)    {:action=>"show", :controller=>"users"}
profile     /:username              {:action=>"show", :controller=>"users"}

提前致谢!

I've got a named route called profile and I would like to be able to access it as json. But when I look at my rake routes output I see that the (.:format) is missing. How do I add it to a named route?

user GET    /users/:id(.:format)    {:action=>"show", :controller=>"users"}
profile     /:username              {:action=>"show", :controller=>"users"}

Thanks in advance!

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

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

发布评论

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

评论(1

梦里南柯 2024-09-01 13:04:00

在路径规范中添加 .format ,如下所示:

map.profile '/:profile.:format', :controller => 'users', :action => 'show'

然后您将得到:

profile    /:profile(.:format)     {:action=>"show", :controller=>"users"}

Add .format in your path specification, like this:

map.profile '/:profile.:format', :controller => 'users', :action => 'show'

Then you'll end up with:

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