Rabl / Will Paginate设置root child的名字

时间:2013-08-07 11:08:49

标签: json ruby-on-rails-3 api will-paginate rabl

我想知道是否有人可以提供帮助。我正在尝试将旧的Rails Model#to_json迁移到我们的API中,以便在更长的时间内更轻松地进行版本控制。由于Rabl和Will Paginate,我在第一个障碍中挣扎。

我们目前覆盖WillPaginate :: Collection#as_json

module WillPaginate
  class Collection

    alias :as_json_without_paginate :as_json   

    def as_json(options = {})

      # RABL seemingly passing JSON::Ext::Generator::State into as_json
      unless options.is_a?(Hash)
        options = {}
      end

      json = {
        :page => current_page
        :per_page => per_page,
        :total_entries => total_entries,
        :entries => as_json_without_paginate(options)
      }
    end

  end
end

所以@ collection.to_json会返回类似

的内容
{
  "total_entries": 1,
  "page": 1,
  "entries": [
    {
      "follow": {
      "id": 1,
      "name": "TEST"
      }
    }
  ],
  "per_page": 10
}

但是,当我尝试在RABL中执行以下操作时

node(:page) {|m| @follows.current_page }
node(:per_page) {|m| @follows.per_page }
node(:total_entries) {|m| @follows.total_entries}

child(@follows => :entries) do
  # extends 'follows/show'
  attributes :id, :name
end

孩子的名字会自动设置为“输入”,我想将其设置为“关注”以与我们当前的API保持一致,但没有任何运气。

{
  "total_entries": 1,
  "page": 1,
  "entries": [
    {
      "entry": {
      "id": 1,
      "name": "TEST"
      }
    }
  ],
  "per_page": 10
}

任何人都可以给我任何指示。我一直试图追溯源代码,似乎总是暗示了孩子的根对象名称。

2 个答案:

答案 0 :(得分:2)

我遇到了同样的错误,问题似乎是将object_root设置为false。这是我为响应另一个stackoverflow问题而提出的相同解决方案: wrong child root name in rabl and can't set child root name

child( {@follow => :entries}, {:object_root => false} ) do
   # extends 'follows/show'
   attributes :id, :name
end

请注意圆括号“()”和大括号“{}”。

希望这会有所帮助。在我的案例中它完美地运作。

答案 1 :(得分:0)

:object_root => false添加到child块应该这样做。

child(@follows => :entries, :object_root => false) do
  # extends 'follows/show'
  attributes :id, :name
end