模型数组上的 Active Record to_json\as_json
首先,我没有使用 Rails。我在这个项目中使用 Sinatra 和 Active Record。
我希望能够覆盖 Model 类上的 to_json 或 as_json 并让它定义一些“默认”选项。例如,我有以下内容:
class Vendor < ActiveRecord::Base
def to_json(options = {})
if options.empty?
super :only => [:id, :name]
else
super options
end
end
end
其中 Vendor 有更多属性,而不仅仅是 id 和 name。在我的路线中,我有类似以下内容的内容:
@vendors = Vendor.where({})
@vendors.to_json
这里 @vendors
是一个数组供应商对象(显然)。但是,返回的 json 并未调用我的 to_json 方法,而是返回所有模型属性。
我实际上没有修改路线的选项,因为我实际上使用的是修改后的 sinatra-rest gem (http://github.com/mikeycgto/sinatra-rest)。
关于如何实现此功能有什么想法吗?我可以在我的 sinatra-rest gem 中执行类似以下操作,但这看起来很愚蠢:
@PLURAL.collect! { |obj| obj.to_json }
First off, I am not using Rails. I am using Sinatra for this project with Active Record.
I want to be able to override either to_json or as_json on my Model class and have it define some 'default' options. For example I have the following:
class Vendor < ActiveRecord::Base
def to_json(options = {})
if options.empty?
super :only => [:id, :name]
else
super options
end
end
end
where Vendor has more attributes than just id and name. In my route I have something like the following:
@vendors = Vendor.where({})
@vendors.to_json
Here @vendors
is an Array vendor objects (obviously). The returned json is, however, not invoking my to_json
method and is returning all of the models attributes.
I don't really have the option of modifying the route because I am actually using a modified sinatra-rest gem (http://github.com/mikeycgto/sinatra-rest).
Any ideas on how to achieve this functionality? I could do something like the following in my sinatra-rest gem but this seems silly:
@PLURAL.collect! { |obj| obj.to_json }
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试重写serialized_hash:
更多信息此处。
Try overriding serializable_hash intead:
More information here.
如果您重写 as_json 而不是 to_json,则在将数组转换为 JSON 之前,数组中的每个元素都将使用 as_json 进行格式化,
我使用以下内容仅公开可访问的属性:
If you override as_json instead of to_json, each element in the array will format with as_json before the array is converted to JSON
I'm using the following to only expose only accessible attributes: