未定义的方法“has_attached_file"对于我的 ActiveRecord 模型 [英] Undefined method "has_attached_file" for my ActiveRecord model

查看:40
本文介绍了未定义的方法“has_attached_file"对于我的 ActiveRecord 模型的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我完全按照 https://github.com/thoughtbot/paperclip 上的文档来安装工具我的应用程序中的回形针用于图像上传.我目前正在使用 gem 'paperclip','~> 5.0.0.beta1'.完成迁移后,四列已正确添加到我的架构中:

I followed the docs at https://github.com/thoughtbot/paperclip exactly to install implement paperclip in my app for image uploading. I am currently using gem 'paperclip', '~> 5.0.0.beta1'. After I did the migration, the four columns were added onto my schema properly:

t.string   "picture_file_name"
t.string   "picture_content_type"
t.integer  "picture_file_size"
t.datetime "picture_updated_at"

因此我的回形针应该安装正确.但是,当我继续将以下两行添加到我的模型类中时:

My paperclip should therefore be installed correctly. However, when I proceeded to add the following two lines onto my model class:

  has_attached_file :picture, styles: { medium: "300*300>", thumb: "100*100" }, default_url: "/images/start_project3.jpg"
  validates_attachment_content_type :picture, content_type: /\Aimage\/.*\Z/

一切都坏了.我尝试在 rails 控制台中创建、搜索或任何与模型类相关的内容,它对我大喊大叫并显示以下错误:

Everything broke. I try to create, search, or anything related to the model class in rails console, it yells at me with the following error:

NoMethodError: undefined method `has_attached_file' for #<Class:0x0055bd71ec0228>

我尝试了多个版本的回形针,从早期的4.3.0版本到最新版本的回形针,问题依旧.我还在更改和迁移之间重新启动了我的服务器,但这并没有解决问题.这是我执行的迁移:

I have tried multiple versions of paperclip, from the earlier version 4.3.0 to the latest version of paperclip, but the problem persists. I also restarted my server in between changes and migrations, but that did not fix the problem. This is the migration that I performed:

class AddAttachmentPictureToProjects < ActiveRecord::Migration
  def self.up
    change_table :projects do |t|
      t.attachment :picture
    end
  end

  def self.down
    remove_attachment :projects, :picture
  end
end

我现在完全不知道该怎么做.这是我的 gem 文件:

I am totally lost right now as to what to do. This is my gem file:

source 'https://rubygems.org'


# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '4.2.7.1'
# Use postgresql as the database for Active Record
gem 'pg', '~> 0.15'
# Use SCSS for stylesheets
gem 'sass-rails', '~> 5.0'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '>= 1.3.0'
# Use CoffeeScript for .coffee assets and views
gem 'coffee-rails', '~> 4.1.0'
# See https://github.com/rails/execjs#readme for more supported runtimes
# gem 'therubyracer', platforms: :ruby

# Use jquery as the JavaScript library
gem 'jquery-rails'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 2.0'
# bundle exec rake doc:rails generates the API under doc/api.
gem 'sdoc', '~> 0.4.0', group: :doc

# Use ActiveModel has_secure_password
gem 'bcrypt', '~> 3.1.7'
gem 'pry-rails'
gem 'annotate'
# Use Unicorn as the app server
# gem 'unicorn'
gem 'faker'
# Use Capistrano for deployment
# gem 'capistrano-rails', group: :development
gem 'pg_search'
gem 'paperclip', '~> 5.0.0.beta1'
# gem "paperclip", :git => "git://github.com/thoughtbot/paperclip.git"
# gem "paperclip", "~> 4.3"

group :development, :test do
  # Call 'byebug' anywhere in the code to stop execution and get a debugger console
  gem 'byebug'
  gem 'faker'
end

group :development do
  # Access an IRB console on exception pages or by using <%= console %> in views
  gem 'web-console', '~> 2.0'

  # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
  gem 'spring'
end

group :production do
  gem 'newrelic_rpm'
  gem 'rails_12factor' # error feedback
end

推荐答案

我不确定发生了什么.我最终进行了数据库回滚并再次重新迁移了迁移.然后我退出了在后台运行的所有终端并重新启动了一切.它现在正在工作.

I am not sure what happened. I ended up doing a db roll back and re-migrated the migration yet again. Then I exited all my terminals running in the background and restarted everything. It is working as of now.

这篇关于未定义的方法“has_attached_file"对于我的 ActiveRecord 模型的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆