我正在构建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
访问数据:
这对我来说似乎很尴尬。无论如何,有什么要删除的数据之一?