Rails grape api发送哈希并一起使用现有方法

时间:2017-03-01 15:42:36

标签: ruby-on-rails grape-api

我遇到了Grape :: API的问题。我需要向服务器发送总共找到的体育中心的哈希值:

 { :total => total_found }

并使用一起存在的方法

present sport_centers, :with => API::APISportCenterBasic

我不知道该怎么做。

我需要一个total_found,因为我向其他服务器发送的运动中心数量有限,我需要总数。

1 个答案:

答案 0 :(得分:0)

您可以使用API::APISportCenterBasic.represent sport_centers, total: total_found

现在,您可以在演示者中使用total添加:

expose 'total' do |_obj, options|
  options[:total]
end