Rails: концерн не загружает дочерний элемент has_one - PullRequest
0 голосов
/ 03 мая 2018

Если у меня есть родительский класс, например:

class Component < ApplicationRecord
  include Imageable
end

И это беспокойство выглядит так:

module Imageable
  extend ActiveSupport::Concern

  included do
    has_one :image_attachment, as: :imageable, dependent: :destroy
  end
end

И этот класс выглядит так:

class ImageAttachment < ApplicationRecord
  belongs_to :imageable, polymorphic: true, optional: true

  has_attached_file :data
end

Почему они не могут найти друг друга в этих двух случаях?

ImageAttachment.last
 => <ImageAttachment id: 12, imageable_type: "component", imageable_id: 3, data_file_name: "tumblr_nb88njd2DF1sfwp0ho1_1280.jpg", data_content_type: "image/jpeg", data_file_size: 63794, data_updated_at: "2018-05-02 11:07:12", created_at: "2018-05-02 10:37:48", updated_at: "2018-05-02 11:07:13">

Component.find(3)
=> <Component id: 3, name: "Testing", body: "Test body", created_at: "2017-11-22 02:43:03", updated_at: "2018-05-01 23:50:01">

Component.find(3).image_attachment
=> nil

ImageAttachment.last.component
=> NoMethodError (undefined method `component' for #<ImageAttachment:0x00007fea291ac1e0>)

1 Ответ

0 голосов
/ 03 мая 2018

1) Кажется, что ваш imageable_type атрибут неверен, потому что это должно быть имя класса, например 'Component' не 'component'. Rails не будет делать это по умолчанию, поэтому я предполагаю, что вы вмешались в этот столбец вручную, и поэтому он не работает

2) ImageAttachment.last.component -> это не сработает, потому что ваша ассоциация для ImageAttachment belongs_to :imageable, поэтому, чтобы получить родителя, вам нужно позвонить ImageAttachment.last.imageable

...