5

製品画像をアップロードするために Spree ショッピング カートを AWS S3 に接続しようとしていますが、エラーが発生し続けます。

.rbenv/versions/2.4.0/lib/ruby/gems/2.4.0/gems/activerecord-5.2.0/lib/active_record/dynamic_matchers.rb:22:in `m
ethod_missing': undefined method `has_one_attached'

これが私のセットアップです:

Gemfile

ruby '2.4.0'
gem 'rails', '~> 5.2.0'
gem 'spree', '~> 3.6.0'
gem 'spree_auth_devise', '~> 3.3'
gem 'spree_gateway', '~> 3.3'
gem 'globalize', github: 'globalize/globalize'
gem 'spree_i18n', github: 'spree-contrib/spree_i18n'
gem 'spree_globalize', github: 'spree-contrib/spree_globalize', branch: 'master'
gem 'spree_static_content', github: 'spree-contrib/spree_static_content'
gem 'aws-sdk', '~> 2.3'

config/initializers/spree.rb

attachment_config = {

    s3_credentials: {
      access_key_id:     ENV['AWS_ACCESS_KEY_ID'],
      secret_access_key: ENV['AWS_SECRET_ACCESS_KEY'],
      bucket:            ENV['S3_BUCKET_NAME']
    },

    storage:        :s3,
    s3_region:      ENV['S3_REGION'],
    s3_headers:     { "Cache-Control" => "max-age=31557600" },
    s3_protocol:    "https",
    bucket:         ENV['S3_BUCKET_NAME'],
    url:            ":s3_domain_url",

    styles: {
        mini:     "48x48>",
        small:    "100x100>",
        product:  "240x240>",
        large:    "600x600>"
    },

    path:           "/:class/:id/:style/:basename.:extension",
    default_url:    "/:class/:id/:style/:basename.:extension",
    default_style:  "product"
  }

  attachment_config.each do |key, value|
    Spree::Image.attachment_definitions[:attachment][key.to_sym] = value
  end

誰かがこのエラーに遭遇し、解決策を持っていますか?

4

3 に答える 3

0

将来この問題が発生する人のために、これが私が修正した方法です。

Spree::User クラスをイニシャライザとして編集している場合、'active_storage/reflection' のイニシャライザが実行されていないことが問題です。class_eval ブロッ​​クの先頭に次の行を追加します。

include ActiveStorage::Reflection::ActiveRecordExtensions

ActiveRecord::Reflection.singleton_class.prepend(ActiveStorage::Reflection::ReflectionExtension)

include ActiveStorage::Attached::Model

その後、ActiveStorage をロードする必要があり、メソッドを見つけることができます。has_one_attached :image

于 2020-10-26T22:47:32.270 に答える
-1

その構成も私には機能しません。実際、手順は非常に簡単です。storage.yml で amazon 構成を宣言し、aws gem を追加すると、準備完了です。ActiveStorage のドキュメントにはすべてが含まれています。http://edgeguides.rubyonrails.org/active_storage_overview.html#setup

于 2018-07-20T19:41:57.033 に答える