Rails:Friendly_id 和 to_json

发布于 2024-11-08 07:42:11 字数 383 浏览 1 评论 0原文

我有一个模型对象集合,我试图为其返回 JSON。 EG

@regions.to_json(:only => [:id, :name ])

效果很好。

如果我尝试使用 :

@regions.to_json(:only => [:friendly_id, :name ]) 

,则Friendly_id不会返回任何内容。该模型确实有:

has_friendly_id :name, :use_slug => true

所以我想知道我缺少什么 - 或者如果我不允许使用 Friendly_id 在 to_json 中?

I have a collection of model objects that I am trying to return JSON for. E.G

@regions.to_json(:only => [:id, :name ])

that works fine.

If I try to use :

@regions.to_json(:only => [:friendly_id, :name ]) 

then nothing is returned for the friendly_id. The model does have:

has_friendly_id :name, :use_slug => true

So I am wondering what I am missing - or if I am not allowed to use
friendly_id's in to_json?

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

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

发布评论

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

评论(1

甜味拾荒者 2024-11-15 07:42:11

尝试使用

@regions.to_json(:only => [:id, :cached_slug])

Try using

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