我正在使用 active_model_serializer。现在我想用分页序列化一个对象,我应该在控制器中还是在序列化器中执行分页逻辑?
如果我选择在序列化程序中进行分页,我需要将 page_number 和 per_page 传递给序列化程序。我该怎么做?我的理解是序列化程序只接受模型对象。
我正在使用 active_model_serializer。现在我想用分页序列化一个对象,我应该在控制器中还是在序列化器中执行分页逻辑?
如果我选择在序列化程序中进行分页,我需要将 page_number 和 per_page 传递给序列化程序。我该怎么做?我的理解是序列化程序只接受模型对象。
常规序列化程序只关心单个项目——而不是分页列表。添加分页最直接的方法是在控制器中:
customers = Customer.page(params[:page])
respond_with customers, meta: {
current_page: customers.current_page,
next_page: customers.next_page,
prev_page: customers.prev_page,
total_pages: customers.total_pages,
total_count: customers.total_count
}
但是,如果您需要多个对象的分页逻辑,这将非常乏味。查看 active_model_serializers 的文档,您会遇到一个ArraySerializer
用于序列化对象数组的文档。我所做的是创建pagination_serializer.rb
用于ArraySerializer
自动为分页数组添加元标记:
# my_app/app/serializers/pagination_serializer.rb
class PaginationSerializer < ActiveModel::Serializer::ArraySerializer
def initialize(object, options={})
meta_key = options[:meta_key] || :meta
options[meta_key] ||= {}
options[meta_key][:pagination] = {
current_page: object.current_page,
next_page: object.next_page,
prev_page: object.prev_page,
total_pages: object.total_pages,
total_count: object.total_count
}
super(object, options)
end
end
添加到 Rails 应用程序后,当您PaginationSerializer
需要来自控制器的分页元标记时,您只需调用它:
customers = Customer.page(params[:page])
respond_with customers, serializer: PaginationSerializer
注意:我写这篇文章是为了使用Kaminari作为分页器。但是,可以轻松修改它以使用任何分页 gem 或自定义解决方案。
2020 年更新:如果您使用架构,active_model_serializer 现在支持开箱即用json_api
,但文档还教您如何在使用架构时添加它json
。
json_api
下面我将解释如果您使用或json
适配器,如何达到预期的效果。检查您使用的是哪一个ActiveModelSerializers.config.adapter
。
只要资源已分页并且您正在使用JsonApi
适配器,分页链接就会自动包含在您的响应中。
如果您想在响应中使用分页链接,请使用Kaminari 或WillPaginate。
雷成例子#array
@posts = Kaminari.paginate_array([1, 2, 3]).page(3).per(1)
render json: @posts
#active_record
@posts = Post.page(3).per(1)
render json: @posts
将分页示例
#array
@posts = [1,2,3].paginate(page: 3, per_page: 1)
render json: @posts
#active_record
@posts = Post.page(3).per_page(1)
render json: @posts
ActiveModelSerializers.config.adapter = :json_api
前任:
{
"data": [
{
"type": "articles",
"id": "3",
"attributes": {
"title": "JSON API paints my bikeshed!",
"body": "The shortest article. Ever.",
"created": "2015-05-22T14:56:29.000Z",
"updated": "2015-05-22T14:56:28.000Z"
}
}
],
"links": {
"self": "http://example.com/articles?page[number]=3&page[size]=1",
"first": "http://example.com/articles?page[number]=1&page[size]=1",
"prev": "http://example.com/articles?page[number]=2&page[size]=1",
"next": "http://example.com/articles?page[number]=4&page[size]=1",
"last": "http://example.com/articles?page[number]=13&page[size]=1"
}
}
ActiveModelSerializers 分页依赖于带有方法current_page
、total_pages
和的分页集合size
,例如Kaminari或WillPaginate都支持。
如果您不使用JSON
适配器,则不会自动包含分页链接,但可以使用meta
key.
将此方法添加到您的基本 API 控制器。
def pagination_dict(collection)
{
current_page: collection.current_page,
next_page: collection.next_page,
prev_page: collection.prev_page, # use collection.previous_page when using will_paginate
total_pages: collection.total_pages,
total_count: collection.total_count
}
end
然后,在您的渲染方法上使用它。
render json: posts, meta: pagination_dict(posts)
前任。
{
"posts": [
{
"id": 2,
"title": "JSON API paints my bikeshed!",
"body": "The shortest article. Ever."
}
],
"meta": {
"current_page": 3,
"next_page": 4,
"prev_page": 2,
"total_pages": 10,
"total_count": 10
}
}
如果您有一个在元标记中添加分页信息的辅助方法,您也可以获得相同的结果。例如,在您的操作中指定一个自定义序列化程序。
render json: @posts, each_serializer: PostPreviewSerializer, meta: meta_attributes(@posts)
#expects pagination!
def meta_attributes(collection, extra_meta = {})
{
current_page: collection.current_page,
next_page: collection.next_page,
prev_page: collection.prev_page, # use collection.previous_page when using will_paginate
total_pages: collection.total_pages,
total_count: collection.total_count
}.merge(extra_meta)
end
这个适配器不允许我们使用meta
key,因为它不能添加分页链接。
https://github.com/x1wins/tutorial-rails-rest-api/blob/master/lib/pagination.rb
# /lib/pagination.rb
class Pagination
def self.build_json object, param_page = {}
ob_name = object.name.downcase.pluralize
json = Hash.new
json[ob_name] = ActiveModelSerializers::SerializableResource.new(object.to_a, param_page: param_page)
json[:pagination] = {
current_page: object.current_page,
next_page: object.next_page,
prev_page: object.prev_page,
total_pages: object.total_pages,
total_count: object.total_count
}
return json
end
end
如何使用
#app/controller/posts_controller.rb
#post#index
render json: Pagination.build_json(@posts)