【问题标题】:Trying to use S3 to upload files via React on Rails尝试使用 S3 通过 React on Rails 上传文件
【发布时间】:2020-11-02 21:03:20
【问题描述】:

所以我正在关注这篇文章https://medium.com/@andrea.wayte/using-amazon-s3-to-store-images-for-react-on-rails-b1414ba2c0b2。每当我在更新数据库后迁移数据库时,我都会收到此错误。

admins-MBP:direct-s3-example admin$ rake db:migrate
rake aborted!
NameError: undefined local variable or method `config' for main:Object
/Users/admin/direct-s3-example/config/environments/development.rb:65:in `<main>'
/Users/admin/direct-s3-example/config/environment.rb:5:in `<main>'
Tasks: TOP => db:migrate => db:load_config => environment
(See full trace by running task with --trace)

我没有 environment.rb 文件,但这是我的 development.rb 文件。

Rails.application.configure do
  # Settings specified here will take precedence over those in config/application.rb.

  # In the development environment your application's code is reloaded on
  # every request. This slows down response time but is perfect for development
  # since you don't have to restart the web server when you make code changes.
  config.cache_classes = false

  # Do not eager load code on boot.
  config.eager_load = false

  # Show full error reports.
  config.consider_all_requests_local = true

  # Enable/disable caching. By default caching is disabled.
  # Run rails dev:cache to toggle caching.
  if Rails.root.join('tmp', 'caching-dev.txt').exist?
    config.action_controller.perform_caching = true
    config.action_controller.enable_fragment_cache_logging = true

    config.cache_store = :memory_store
    config.public_file_server.headers = {
      'Cache-Control' => "public, max-age=#{2.days.to_i}"
    }
  else
    config.action_controller.perform_caching = false

    config.cache_store = :null_store
  end

  # Store uploaded files on the local file system (see config/storage.yml for options).
  config.active_storage.service = :local

  # Don't care if the mailer can't send.
  config.action_mailer.raise_delivery_errors = false

  config.action_mailer.perform_caching = false

  # Print deprecation notices to the Rails logger.
  config.active_support.deprecation = :log

  # Raise an error on page load if there are pending migrations.
  config.active_record.migration_error = :page_load

  # Highlight code that triggered database queries in logs.
  config.active_record.verbose_query_logs = true

  # Debug mode disables concatenation and preprocessing of assets.
  # This option may cause significant delays in view rendering with a large
  # number of complex assets.
  config.assets.debug = true

  # Suppress logger output for asset requests.
  config.assets.quiet = true

  # Raises error for missing translations.
  # config.action_view.raise_on_missing_translations = true

  # Use an evented file watcher to asynchronously detect changes in source code,
  # routes, locales, etc. This feature depends on the listen gem.
  config.file_watcher = ActiveSupport::EventedFileUpdateChecker
end

Paperclip.options[:command_path] = "/usr/bin/"
config.paperclip_defaults = {
    storage: :s3,
    s3_host_name: 's3-us-east-2.amazonaws.com',
    s3_credentials: {
       bucket: ENV.fetch('petition-form'),
       access_key_id: ENV.fetch('--------'),
       secret_access_key: ENV.fetch('--------------'),
       s3_region: ENV.fetch('us-east-2'),
    }
}

【问题讨论】:

  • 尝试将整个代码块放在底部(以Paperclip.options[:command_path] = "/usr/bin/" 开头)单词end 之前。 config 可在传递给 Rails.application.configure 的块内访问,但您目前在此块外使用它

标签: ruby-on-rails ruby amazon-web-services amazon-s3


【解决方案1】:

问题已得到解答。底部的代码已经过了最后一个end

【讨论】:

    猜你喜欢
    • 2021-07-26
    • 2012-12-03
    • 2020-07-18
    • 1970-01-01
    • 2012-01-08
    • 1970-01-01
    • 2019-05-09
    • 2015-03-28
    • 1970-01-01
    相关资源
    最近更新 更多