我有一个散列,其中包含通过API调用接收的散列(票证)和元数据的数组。端点使用will_paginate gem并返回结果。
有没有办法将此哈希转换为可在视图中用作will_paginate
参数的格式?
答案 0 :(得分:1)
will_paginate
可以使用普通数组而不是ActiveRecord范围。
您只需要先处理您的数据。如何做到这一点有很多资源:
https://makandracards.com/makandra/13521-will_paginate-can-paginate-plain-ruby-arrays
https://gist.github.com/denmarkin/817327