Friendly_id 和真实ID

发布于 2024-12-12 12:56:26 字数 89 浏览 2 评论 0原文

有什么方法可以从使用Friendly_id修改的模型中获取真实的id列吗?

出于性能原因,我不想对其进行另一个数据库查询。

Is there any way to get the real id column from a model that is modified with friendly_id?

I don`t want to make another db query for it, in performance reasons.

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

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

发布评论

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

评论(2

这样的小城市 2024-12-19 12:56:26

从广义上讲,Friendly_id 修改了 to_paramfind 方法。接下来应该可以工作:

@affiche = Affiche.find(params[:id]) # params[:id] is a slug
@id = @affiche.id

Broadly speaking friendly_id modifies to_param and find methods. Next should work:

@affiche = Affiche.find(params[:id]) # params[:id] is a slug
@id = @affiche.id
后来的我们 2024-12-19 12:56:26

您尝试过属性[“id”]吗?例如:Model.first.attributes["id"]

Have you tried attributes["id"]? e.g: Model.first.attributes["id"]

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