未初始化的常量 ApplicationRecord
Posted
技术标签:
【中文标题】未初始化的常量 ApplicationRecord【英文标题】:uninitialized constant ApplicationRecord 【发布时间】:2016-11-14 02:12:03 【问题描述】:我正在在线编写 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
【问题讨论】:
你能检查一下app/models/application_record.rb
的存在吗?
我没有 application_record.rb 文件,我应该有一个吗?
Application Record 仅适用于 rails 5。您正在运行 rals 5 吗?
不,我没有运行 rails 5,我正在运行 rails 4。
那是我运行 rails 4 的问题
【参考方案1】:
如果您在从 Rails 5 迁移到 Rails 6 后遇到此问题,请确保更改
config.load_defaults 5.2
为
config.load_defaults 6.0
在您的 config/application.rb
文件中。
【讨论】:
【参考方案2】:参考https://***.com/a/41388844/5598043infused 的回答
创建一个名为app/models/application_record.rb
的新文件,其内容如下:
class ApplicationRecord < ActiveRecord::Base
self.abstract_class = true
end
【讨论】:
这个解决方案对我有用。在 Rails 上工作 6。谢谢【参考方案3】:看来您正在使用 Rails 5 教程,但使用的是 Rails 4。在 Rails 5 中,所有模型都继承自 ApplicationRecord
,而 Rails 4 继承自 ActiveRecord::Base
立即修复:
class User < ActiveRecord::Base
...
end
长期修复,切换到 Rails 5 并使用 Rails 5 学习
【讨论】:
以上是关于未初始化的常量 ApplicationRecord的主要内容,如果未能解决你的问题,请参考以下文章