Rails:Friendly_id 和 to_json
我有一个模型对象集合,我试图为其返回 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试使用
Try using