web-dev-qa-db-ja.com

初期化されていない定数ApplicationRecord

私はRailsチュートリアルブックオンラインで作業しており、 http:// localhost:3000 / にアクセスすると次のエラーメッセージが表示されます

「初期化されていない定数ApplicationRecord」

そしてそれは私に最初の行を強調表示する次のコードを与えます。

class User < ApplicationRecord
  attr_accessor :remember_token
  before_save { self.email = email.downcase }
  validates :name,  presence: true, length: { maximum: 50 }
  VALID_EMAIL_REGEX = /\A[\w+\-.]+@[a-z\d\-.]+\.[a-z]+\z/i
  validates :email, presence: true, length: { maximum: 255 },

これが私のapplication.html.erbファイルです。

<!DOCTYPE html>
<html>
  <head>
    <title><%= full_title(yield(:title)) %></title>
    <%= stylesheet_link_tag "application", media: "all",
                                           "data-turbolinks-track" => true %>
    <%= javascript_include_tag "application", "data-turbolinks-track" => true %>
    <%= csrf_meta_tags %>
    <%= render 'layouts/shim' %>
  </head>
  <body>
    <%= render 'layouts/header' %>
    <div class="container">
      <% flash.each do |message_type, message| %>
        <div class="alert alert-<%= message_type %>"><%= message %></div>
      <% end %>
      <%= yield %>
      <%= render 'layouts/footer' %>
      <%= debug(params) if Rails.env.development? %>
    </div>
  </body>
</html>

そして私のuser.rbファイル:

class User < ApplicationRecord
  attr_accessor :remember_token
  before_save { self.email = email.downcase }
  validates :name,  presence: true, length: { maximum: 50 }
  VALID_EMAIL_REGEX = /\A[\w+\-.]+@[a-z\d\-.]+\.[a-z]+\z/i
  validates :email, presence: true, length: { maximum: 255 },
                    format: { with: VALID_EMAIL_REGEX },
                    uniqueness: { case_sensitive: false }
  has_secure_password
  validates :password, presence: true, length: { minimum: 6 }

  # Returns the hash digest of the given string.
  def User.digest(string)
    cost = ActiveModel::SecurePassword.min_cost ? BCrypt::Engine::MIN_COST :
                                                  BCrypt::Engine.cost
    BCrypt::Password.create(string, cost: cost)
  end

  # Returns a random token.
  def User.new_token
    SecureRandom.urlsafe_base64
  end

  # Remembers a user in the database for use in persistent sessions.
  def remember
    self.remember_token = User.new_token
    update_attribute(:remember_digest, User.digest(remember_token))
  end

  # Returns true if the given token matches the digest.
  def authenticated?(remember_token)
    return false if remember_digest.nil?
    BCrypt::Password.new(remember_digest).is_password?(remember_token)
  end

  # Forgets a user.
  def forget
    update_attribute(:remember_digest, nil)
  end
end
13
Steven Aguilar

Rails 5チュートリアルを使用しているようですが、Rails 4.で作業しています。Rails 5では、すべてのモデルが継承しますApplicationRecordから、Rails 4 from ActiveRecord::Base

即時修正:

class User < ActiveRecord::Base
...
end

長期的な修正、Rails 5に切り替え、Rails 5

19
oreoluwa

https://stackoverflow.com/a/41388844/559804 からのインフューズドの回答を参照

次の内容でapp/models/application_record.rbという新しいファイルを作成します。

class ApplicationRecord < ActiveRecord::Base
  self.abstract_class = true
end
11
Romeo

Rails 5からRails 6に移動した後にこれを取得している場合は、

config.load_defaults 5.2

for

config.load_defaults 6.0

あなたのconfig/application.rbファイル。

0
user9869932