我遇到了Grape :: API的问题。我需要向服务器发送总共找到的体育中心的哈希值:
{ :total => total_found }
并使用一起存在的方法
present sport_centers, :with => API::APISportCenterBasic
我不知道该怎么做。
我需要一个total_found
,因为我向其他服务器发送的运动中心数量有限,我需要总数。
答案 0 :(得分:0)
您可以使用API::APISportCenterBasic.represent sport_centers, total: total_found
现在,您可以在演示者中使用total
添加:
expose 'total' do |_obj, options|
options[:total]
end