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

发布于 2024-10-19 23:16:04 字数 373 浏览 0 评论 0原文

我正在使用 Ruby on Rails 3,我想重写 to_json 方法。

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

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

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

例如,我想

:name => name.capitalize

在检索此内容时将用户名大写

@user.to_json

I am using Ruby on Rails 3 and I would like to override the to_json method.

At this time I use the following code in order to avoid to export important information.

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

If I want change a value using that method, how I can do?

For example, I would like to capitalize the user name

:name => name.capitalize

on retrieving this

@user.to_json

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

怼怹恏 2024-10-26 23:16:04

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

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

这是一篇关于 to_json 和 as_json 之间的差异

If you want to render :json => @user in the controller for Rails 3, you can override as_json in the model:

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

Here's a good post about the differences between to_json and as_json.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文