3

首先,我没有使用 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 }
4

2 回答 2

5

尝试覆盖 serializable_hash intead:

def serializable_hash(options = nil)
  { :id => id, :name => name }
end

更多信息在这里

于 2010-10-22T19:08:08.793 回答
4

如果覆盖 as_json 而不是 to_json,则数组中的每个元素将在数组转换为 JSON 之前使用 as_json 格式化

我使用以下内容仅公开可访问的属性:

def as_json(options = {})
    options[:only] ||= self.class.accessible_attributes.to_a
    super(options)
end
于 2013-02-14T19:33:09.867 回答