我有以下 ActiveRecord 模型,其中to_json
方法被覆盖。
class Country < ActiveRecord::Base
attr_accessible :iso, :name
def as_json(options={})
result = super({:only => [:id, :name]}.merge(options))
result
end
end
我想将id
整数类型转换为字符串。我怎样才能做到这一点。提前致谢。