在不违反约定的情况下替换路由中的 :id
我刚刚替换了 Rails 3 中资源路由上的 :id 来生成生成的哈希值。我对我编写的不太传统的代码感到恼火(例如 link_to edit_user_path(@user) 现在写为 link_to '/users/#{@user.user_hash}')。所以我想知道,有没有更聪明的方法来做到这一点?
I just replaced the :id on the resource routes in rails 3 for a hash generated. I'm annoyed by the fact that I'm writing less conventional code (e.g. a link_to edit_user_path(@user) is now written as link_to '/users/#{@user.user_hash}'). So I'm wondering, is therea smarter way to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
和
edit_user_path(@user)
将为您正常工作and
edit_user_path(@user)
will work properly for you