- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我一直无法通过测试。我找不到问题所在,我们将不胜感激!
这是失败信息。
1) Authentication signin with valid information
Failure/Error: click_button "Sign in"
NoMethodError:
undefined method `remember_token' for #<Class:0x007fe30d0a93b0>
# ./app/helpers/sessions_helper.rb:4:in `sign_in'
# ./app/controllers/sessions_controller.rb:9:in `create'
# (eval):2:in `click_button'
# ./spec/requests/authentication_pages_spec.rb:34:in `block (4 levels) in <top (required)>'
2) Authentication signin with valid information
Failure/Error: click_button "Sign in"
NoMethodError:
undefined method `remember_token' for #<Class:0x007fe30d0a93b0>
# ./app/helpers/sessions_helper.rb:4:in `sign_in'
# ./app/controllers/sessions_controller.rb:9:in `create'
# (eval):2:in `click_button'
# ./spec/requests/authentication_pages_spec.rb:34:in `block (4 levels) in <top (required)>'
3) Authentication signin with valid information
Failure/Error: click_button "Sign in"
NoMethodError:
undefined method `remember_token' for #<Class:0x007fe30d0a93b0>
# ./app/helpers/sessions_helper.rb:4:in `sign_in'
# ./app/controllers/sessions_controller.rb:9:in `create'
# (eval):2:in `click_button'
# ./spec/requests/authentication_pages_spec.rb:34:in `block (4 levels) in <top (required)>'
4) Authentication signin with valid information
Failure/Error: click_button "Sign in"
NoMethodError:
undefined method `remember_token' for #<Class:0x007fe30d0a93b0>
# ./app/helpers/sessions_helper.rb:4:in `sign_in'
# ./app/controllers/sessions_controller.rb:9:in `create'
# (eval):2:in `click_button'
# ./spec/requests/authentication_pages_spec.rb:34:in `block (4 levels) in <top (required)>'
这是身份验证页面规范 rb:
require 'spec_helper'
describe "Authentication" do
subject { page }
describe "signin page" do
before { visit signin_path }
it { should have_selector('h1', text: 'Sign in') }
it { should have_selector('title', text: 'Sign in') }
end
describe "signin" do
before { visit signin_path }
describe "with invalid information" do
before { click_button "Sign in" }
it { should have_selector('title', text: 'Sign in') }
it { should have_selector('div.alert.alert-error', text: 'Invalid') }
end
describe "after visiting another page" do
before { click_link "Home" }
it { should_not have_selector('div.alert.alert-error') }
end
describe "with valid information" do
let(:user) { FactoryGirl.create(:user) }
before do
fill_in "Email", with: user.email.upcase
fill_in "Password", with: user.password
click_button "Sign in"
end
it { should have_selector('title', text: user.name) }
it { should have_link('Profile', href: user_path(user)) }
it { should have_link('Sign out', href: signout_path) }
it { should_not have_link('Sign in', href: signin_path) }
end
end
end
这是 session 助手
module SessionsHelper
def sign_in(user)
cookies.permanent[:remember_token] = user.remember_token
self.current_user = user
end
def signed_in?
!current_user.nil?
end
def current_user=(user)
@current_user = user
end
def current_user
@current_user ||= User.find_by_remember_token(cookies[:remember_token])
end
end
这里是用户rb文件
class User < ActiveRecord::Base
attr_accessible :name, :email, :password, :password_confirmation
has_secure_password
before_save { |user| user.email = email.downcase }
before_save :create_remember_token
validates :name, presence: true, length: {maximum: 50}
VALID_EMAIL_REGEX = /\A[\w+\-.]+@[a-z\d\-.]+\.[a-z]+\z/i
validates :email, presence: true, format: { with: VALID_EMAIL_REGEX },
uniqueness: { case_sensitive: false }
validates :password, length: {minimum: 6}
validates :password_confirmation, presence:true
private
def create_remember_token
self.remember_token = SecureRandom.urlsafe_base64
end
end
这是 session Controller
class SessionsController < ApplicationController
def new
end
def create
user = User.find_by_email(params[:session][:email].downcase)
if user && user.authenticate(params[:session][:password])
sign_in User
redirect_to user
else
flash.now[:error] = 'Invalid email/password combination' # Not quite right!
render 'new'
end
end
def destroy
end
end
这些是我认为有问题的文件,如果您需要查看任何其他文件,请告诉我。任何想法将不胜感激!谢谢!
最佳答案
[根据原始答案更新每个评论线程]。
错误消息显示 Class
缺少该方法,这意味着 Class
而不是 User
的实例作为sign_in
的参数。查看sessions_controller.rb
中的调用代码,可以看到传递的是User
,而不是user
。
总的来说,我发现该教程“非常准确”。如果您仔细阅读文本,就不会出错。
关于ruby-on-rails - 第 8 章 Mark Hartl 教程未定义 'remember_token' 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17252681/
我无法理解以下情况: 我正在通过执行以下操作登录并记住我的用户 class SessionsController < ApplicationController def create us
在 Lynda 教程“启动并运行 Laravel”中,创建了一个示例应用程序 (authapp),允许用户登录。 以下是 create_user 迁移的结构: public function up()
我的应用程序在本地运行没有任何问题,但是一旦我将它推送到 Heroku,日志就会显示 NoMethodError。查看我的代码,我并没有立即看到我错过了什么。特别是,为什么它会在本地工作,但在 Her
我正在尝试让用户使用 flask 登录登录。 登录码: def signin(self, email, password): user = None userLoggedIn = Fa
我正在编写第 8 章的 michal hart 的 Ruby on rails 教程 Click here for details ,我在练习8.6卡住了,作者在集成测试中介绍了一种访问虚拟remem
对于我的项目,我使用 Auth 登录,一切正常,直到我尝试注销: Auth::logout(); 我使用自定义字段名 herrinerToken 而不是默认的 remember_token。在我的
随着 Laravel 最近的更新,它们需要一个 Remember_token 和 Updated_at。 登录和退出时我得到: SQLSTATE[42S22]: Column not found: 1
使用 remember_token 安全吗?在用户表中用于验证用户进入应用程序? 这个 token 的目的是什么?目前,我在表单中使用它来检查用户是否已登录 - 如果 token 不存在,我会显示登录
我使用的是现有数据库,不允许修改表,因此添加 remember_token 不是一个选项,但没有它我无法登录。当我尝试登录时,Laravel 会检查凭据并返回它们是否与记录匹配,但它只会刷新页面。我很
我是 MVC 的新手。谁能告诉我 remember_token 的函数在 laravel 中写在哪里? 我在 Bluprint 中看到并找到了这个功能: public function remembe
我正在尝试做 Auth:logout(); ,但我收到此错误。我真的需要这个专栏还是我可以避免? Route::get('/logout', 'MainController@logout'); p
我一直无法通过测试。我找不到问题所在,我们将不胜感激! 这是失败信息。 1) Authentication signin with valid information Failure/Err
我正在尝试完成 Michael Hartl 的 Ruby on Rails 教程,但我被困在第 8 章。我在运行测试时遇到了同样的两个错误: NoMethodError: 未定义的方法 remembe
我按照 Michael Hartl 的教程为我的应用程序提供了一个身份验证系统,但我一直收到此 remember_token 方法错误: undefined method `remember_toke
SQLSTATE[42S22]: Column not found: 1054 Unknown column 'updated_at' in 'field list' (SQL: update `us
我是一名优秀的程序员,十分优秀!