gpt4 book ai didi

ruby-on-rails - 使用火箭裤时如何配置JSON响应?

转载 作者:行者123 更新时间:2023-12-03 22:39:40 27 4
gpt4 key购买 nike

我正在使用火箭裤来呈现我的 JSON API。

我试图通过在我的模型中覆盖 as_json 来改变它呈现 JSON 的方式,但不知何故,它似​​乎没有改变火箭裤响应中的任何内容。

在我的 Controller 中:

class Api::V1::ProjectsController < RocketPants::Base
...
def show
expose Project.find(params[:id])
end
...
end

在我的模型中:

class Project < ActiveRecord::Base
...
def as_json(options = {})
{"this" => "is not working!"}
end
...
end

我错过了什么?

最佳答案

此外,还有第一组选项可以发送到公开 block 。根据来源,您可以将选项传递给 serializable_hash 方法。例如:

公开用户,仅:[:name, :email]

这将调用包含名称和电子邮件的对象的 serializable_hash。

您还可以在这组选项中指定预先加载。例如:

公开上传,:include => { :user => { :only => :username } }

这将公开您的上传并预先加载与用户的 belongs_to 关联。

来源:https://github.com/filtersquad/rocket_pants/issues/20#issuecomment-6347550

关于ruby-on-rails - 使用火箭裤时如何配置JSON响应?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11493397/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com