ruby-on-rails – 未定义的方法`email’for#

ruby-on-rails – 未定义的方法`email’for#,第1张

概述无法弄清楚这里有什么问题.跟着Devise设置说明,用Google搜索我能想到的一切,仍然没有运气. undefined method `email' for #<User id: nil, created_at: nil, updated_at: nil>Extracted source (around line #7):4: <%= devise_error_messages! %> 无法弄清楚这里有什么问题.跟着Devise设置说明,用Google搜索我能想到的一切,仍然没有运气.

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 => falseend

我运行rake db:migrate,重置服务器,你有什么.仍然无法弄清楚我哪里出错了.我甚至有另一个基本的应用程序与相同的设置,梳理源,似乎我已经做了一切正确,只是看不到问题.

解决方法 基本上,您的错误意味着您的用户模型中没有电子邮件列(或attr_accessor).

我想你用的是Devise< 2.0现在您使用的是最新版本. 从2.0开始,Devise不再自动将列添加到模型中,see this page for more info.

总结

以上是内存溢出为你收集整理的ruby-on-rails – 未定义的方法`email’for#全部内容,希望文章能够帮你解决ruby-on-rails – 未定义的方法`email’for#所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1279502.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-09
下一篇 2022-06-09

发表评论

登录后才能评论

评论列表(0条)

保存