Rails API:Netflix fast_jsonapi和Rails渲染-双重数据

时间:2019-06-15 23:13:42

标签: ruby-on-rails fastjsonapi

我正在构建Rails API,并使用Netflix的fast_jsonapi代码序列化我的ActiveRecord对象:

class PerformancesController < ApplicationController

  def index
    render json: serialize(user.performances)
  end

  def serialize(data)
    PerformanceSerializer.new(data).serialized_json
  end

end

但是,当响应返回时,我必须使用response.data.data访问数据: enter image description here

这对我来说似乎很尴尬。无论如何,有什么要删除的数据之一?

0 个答案:

没有答案