如何更改覆盖'to_json'方法的值?

时间:2011-03-01 20:58:47

标签: ruby-on-rails ruby json ruby-on-rails-3 override

我正在使用Ruby on Rails 3,我想覆盖to_json方法。

目前我使用以下代码以避免导出重要信息。

  def to_json
    super(
      :except => [
        :password
      ]
    )
  end

如果我想使用该方法更改值,我该怎么做?

例如,我想大写用户名

:name => name.capitalize

检索此

@user.to_json

2 个答案:

答案 0 :(得分:10)

如果你想在Rails 3的控制器中render :json => @user,你可以覆盖模型中的as_json

class User < ActiveRecord::Base
  def as_json(options={})
    result = super({ :except => :password }.merge(options))
    result["user"]["name"] = name.capitalize
    result
  end
end

这是一篇关于differences between to_json and as_json的好文章。

答案 1 :(得分:0)