重命名返回的 JSON

发布于 2024-10-28 13:09:22 字数 497 浏览 1 评论 0原文

我需要修改 Ruby 应用程序返回的 JSON。 从我的谷歌搜索来看,我似乎必须在我的类中重写 as_json ,但我无法让它工作

JSON:

"foo_class" =     {
        "created_at" = "2011-03-30T11:45:48Z";            
         #And so forth.... 

我想将 foo_class 修改为 foo ,即类名它自己,并且没有任何属性。

class FooClass < ActiveRecord::Base

def as_json(options={})
json = super(options)
    #How do i modify only the class name in returned json?
    #And leave the properties as is...
    return json
end

I have the need for modifying JSON returned by a Ruby app.
From my googling it seems that I have to override as_json in my class, but I am not able to get it to work

JSON:

"foo_class" =     {
        "created_at" = "2011-03-30T11:45:48Z";            
         #And so forth.... 

I would like to modify foo_class to foo, i.e. the class name it self,and none of the properties.

class FooClass < ActiveRecord::Base

def as_json(options={})
json = super(options)
    #How do i modify only the class name in returned json?
    #And leave the properties as is...
    return json
end

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

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

发布评论

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

评论(1

暖阳 2024-11-04 13:09:22

在 Rails 3.0.5 中,您可以在控制器中的 as_json 方法中使用选项 :root

@foo_classes.as_json(:root => 'foo')

您可以使用 github 上的此应用,遵循路径http://localhost:3000/foo_classes.js

In rails 3.0.5 you can use option :root in as_json method in your controller:

@foo_classes.as_json(:root => 'foo')

You can check it with this app on github, following path http://localhost:3000/foo_classes.js

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