gpt4 book ai didi

ruby-on-rails - rails : change default JSON structure

转载 作者:行者123 更新时间:2023-12-02 01:42:33 24 4
gpt4 key购买 nike

我是 Rails 的新手,我使用的是 4.2.0 版本。

假设我们在 url localhost:3000/users 处有以下 JSON

[{id: 1, "firstName": "John","lastName": "Smith"},
{id: 2, "firstName": "John","lastName": "Red"}]

但这不是我想要的,我希望是这样的:

{ users :[
{id: 1, "firstName": "John","lastName": "Smith"},
{id: 2, "firstName": "John","lastName": "Red"}
]}

我该怎么办?谢谢大家。

最佳答案

在用户索引 Controller 中试试这个

render json: {users: @users}

在哪里

@users = [{id: 1, "firstName": "John","lastName": "Smith"},
{id: 2, "firstName": "John","lastName": "Red"}]

关于ruby-on-rails - rails : change default JSON structure,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27659283/

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