我正在使用bullet gem查看我的应用程序中有n+1个查询的位置。它告诉我在调用序列化程序时,要急切地加载我的关联。我的代码如下:
render json: @products, each_serializer: ::V1::ProductSerializer, includes: [:taggings], links: links, status: :ok
但在我加上这些之后,我仍然从子弹宝石那里得到同样的警告。看起来是这样的:
GET /api/v1/product_feed?state=CA&page=1
USE eager loading detected
Product => [:taggings]
Add to your finder: :includes => [:taggings]
Call stack
/home/jay/current_projects/api/app/controllers/api/v1/products_controller.rb:111:in `product_feed'
有没有人知道为什么标签表不急于加载。
最佳答案
您需要首先在查询中包含标记,然后序列化程序将能够读取加载的记录,而不是逐个记录单独请求标记关联记录。
@products = Product.includes(:taggings)
render json: @products, each_serializer: ::V1::ProductSerializer, includes: [:taggings], links: links, status: :ok