无法弄清楚这里出了什么问题。按照设计设置说明,谷歌搜索了我能想到的一切,仍然没有运气。
undefined method `email' for #<User id: nil, created_at: nil, updated_at: nil>
Extracted source (around line #7):
4: <%= devise_error_messages! %>
5:
6: <div><%= f.label :email %><br />
7: <%= f.email_field :email %></div>
8:
9: <div><%= f.label :password %><br />
10: <%= f.password_field :password %></div>
这是我的用户模型:
class User < ActiveRecord::Base
rolify
# Include default devise modules. Others available are:
# :token_authenticatable, :confirmable,
# :lockable, :timeoutable and :omniauthable
devise :database_authenticatable, :registerable,
:recoverable, :rememberable, :trackable, :validatable
# Setup accessible (or protected) attributes for your model
attr_accessible :email, :password, :password_confirmation, :remember_me
validates_presence_of :email
validates_uniqueness_of :email, :case_sensitive => false
end
我已经运行 rake db:migrate,重置服务器,你有什么。仍然无法弄清楚我哪里出错了。我什至还有另一个具有相同设置的基本应用程序,梳理源代码似乎我已经正确完成了所有操作,只是看不到问题所在。