Friendly_id 和真实ID
有什么方法可以从使用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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
从广义上讲,Friendly_id 修改了
to_param
和find
方法。接下来应该可以工作:Broadly speaking friendly_id modifies
to_param
andfind
methods. Next should work:您尝试过
属性[“id”]
吗?例如:Model.first.attributes["id"]
Have you tried
attributes["id"]
? e.g:Model.first.attributes["id"]