Warning: file_get_contents(/data/phpspider/zhask/data//catemap/0/search/2.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Activerecord 如何加载附件:1+;N无法使用ActiveStorage附件时出现问题_Activerecord_Ruby On Rails 6_Has And Belongs To Many_Rails Activestorage - Fatal编程技术网

Activerecord 如何加载附件:1+;N无法使用ActiveStorage附件时出现问题

Activerecord 如何加载附件:1+;N无法使用ActiveStorage附件时出现问题,activerecord,ruby-on-rails-6,has-and-belongs-to-many,rails-activestorage,Activerecord,Ruby On Rails 6,Has And Belongs To Many,Rails Activestorage,我有一个为JSON API响应序列化的产品列表 为此,我还需要来自ActiveStorage附件的imageUrl。 我被1+N问题绊倒了 如您所见,我已经尝试包含任何类型的“includes” 我已经添加了带有照片的“” 如何解决此1+N问题? 型号: class Product ActiveStorage::Current.host = ENV['APPLICATION_URL'] include Rails.application.routes.url_helpers has

我有一个为JSON API响应序列化的产品列表

为此,我还需要来自
ActiveStorage
附件的imageUrl。 我被1+N问题绊倒了

如您所见,我已经尝试包含任何类型的“
includes
” 我已经添加了带有照片的“

如何解决此1+N问题?

型号

class Product
  ActiveStorage::Current.host = ENV['APPLICATION_URL']
  include Rails.application.routes.url_helpers

  has_many_attached :photos
  has_and_belongs_to :categories

  def photo_thumbnail_urls
    photos.map do |photo|
      # this generates urls for the API
      rails_representation_url(photo.variant(thumb_options), host: ActiveStorage::Current.host)
    end
  end
end
这是我的
控制器

类ProductsController<应用程序控制器

  # as you can see, I already tried to include any kind of 'includes' 
  # and I already added the 'with_attached_photos' 

  top_rated_products = Product.includes(:categories,
                                        :active_storage_blobs,
                                        :categories_products,
                                        :active_storage_attachments,
                                        photos_attachments: :blob,
    where("lower(name) LIKE lower(?)", "%" + query_param + "%").
    where("categories_products.category_id": [1,2,3,4]).
    with_attached_photos

  render json: top_rated_products, each_serializer: TopProductSerializer
结束

这是我的
序列化程序

class TopProductSerializer < ActiveModel::Serializer
  attribute :id
  attribute :name
  attribute :photo_thumbnail_urls, key: :images
end
我还错过了什么?

我用它工作:

类产品
作用域:eager_load_photos,->{includes photos_attachments::blob}
结束
1+N问题现在完全消失了

 Product Load (4.2ms)  SELECT "products".* FROM "products" WHERE (lower(name) LIKE lower('%ha%')) ORDER BY created_at asc LIMIT $1  [["LIMIT", 5]]
  ↳ app/controllers/products_controller.rb:116:in `top_rated'
  HABTM_Categories Load (0.3ms)  SELECT "categories_products".* FROM "categories_products" WHERE "categories_products"."product_id" IN ($1, $2, $3, $4, $5)  [[nil, 740], [nil, 741], [nil, 742], [nil, 744], [nil, 746]]
  ↳ app/controllers/products_controller.rb:116:in `top_rated'
  Category Load (0.2ms)  SELECT "categories".* FROM "categories" WHERE "categories"."id" IN ($1, $2)  [[nil, 100], [nil, 5107]]
  ↳ app/controllers/products_controller.rb:116:in `top_rated'
[active_model_serializers]   ActiveStorage::Attachment Load (0.2ms)  SELECT "active_storage_attachments".* FROM "active_storage_attachments" WHERE "active_storage_attachments"."record_id" = $1 AND "active_storage_attachments"."record_type" = $2 AND "active_storage_attachments"."name" = $3  [["record_id", 740], ["record_type", "Product"], ["name", "photos"]]
[active_model_serializers]   ↳ app/models/product.rb:53:in `photo_thumbnail_urls'
[active_model_serializers]   ActiveStorage::Blob Load (0.1ms)  SELECT "active_storage_blobs".* FROM "active_storage_blobs" WHERE "active_storage_blobs"."id" = $1 LIMIT $2  [["id", 3840], ["LIMIT", 1]]
[active_model_serializers]   ↳ app/models/product.rb:55:in `block in photo_thumbnail_urls'
[active_model_serializers]   ActiveStorage::Blob Load (0.2ms)  SELECT "active_storage_blobs".* FROM "active_storage_blobs" WHERE "active_storage_blobs"."id" = $1 LIMIT $2  [["id", 3841], ["LIMIT", 1]]
[active_model_serializers]   ↳ app/models/product.rb:55:in `block in photo_thumbnail_urls'
[active_model_serializers]   ActiveStorage::Blob Load (0.1ms)  SELECT "active_storage_blobs".* FROM "active_storage_blobs" WHERE "active_storage_blobs"."id" = $1 LIMIT $2  [["id", 3842], ["LIMIT", 1]]
[active_model_serializers]   ↳ app/models/product.rb:55:in `block in photo_thumbnail_urls'
[active_model_serializers]   ActiveStorage::Blob Load (0.1ms)  SELECT "active_storage_blobs".* FROM "active_storage_blobs" WHERE "active_storage_blobs"."id" = $1 LIMIT $2  [["id", 3843], ["LIMIT", 1]]
[active_model_serializers]   ↳ app/models/product.rb:55:in `block in photo_thumbnail_urls'
[active_model_serializers]   ActiveStorage::Blob Load (0.2ms)  SELECT "active_storage_blobs".* FROM "active_storage_blobs" WHERE "active_storage_blobs"."id" = $1 LIMIT $2  [["id", 3844], ["LIMIT", 1]]
[active_model_serializers]   ↳ app/models/product.rb:55:in `block in photo_thumbnail_urls'
# and so on and so on... 
#......
#....
#...
#..
#.
Product.eager_load_photos.where(......).limit(n) # and so on