在不违反约定的情况下替换路由中的 :id

发布于 2024-10-19 15:13:18 字数 160 浏览 1 评论 0原文

我刚刚替换了 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 技术交流群。

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

发布评论

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

评论(1

十二 2024-10-26 15:13:18
class User < ActiveRecord::Base
  def to_param
    user_hash
  end
end

edit_user_path(@user) 将为您正常工作

class User < ActiveRecord::Base
  def to_param
    user_hash
  end
end

and edit_user_path(@user) will work properly for you

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