0

私の問題は、Railsコンソールを使用して受信したユーザーの電子メールを更新しようとしたときです。NoMethodError: undefined method 'update_attribute'

問題を解決しながら作業している間、私は試し current_user = user.authrnticate(foobar)、戻ってきましたNameError: undefined local variable or method 'user' for main:Object

これは、「railsc」がuser.rbファイルを正しく使用または表示していないと私に信じさせます。

[rake db:test:prepare]と[rake db:migrate]を実行する前後に、railsサーバーを再起動してみました。

私の[railsc]は、user.rbで定義されていないメソッドを実行します。

Rspecは問題なく実行されています。user_specのすべてのテストに合格しています。コメントアウトすると、has_secure_passwordすべてのテストが失敗します。

require 'spec_helper'

describe User do

before do 
    @user = User.new(name: "Example User", email: "user@example.com",
                      password: "foobar", password_confirmation: "foobar")
end

subject { @user }

it { should respond_to(:name) }
it { should respond_to(:email) }
it { should respond_to(:password_digest) } 
it { should respond_to(:password) }
it { should respond_to(:password_confirmation) }
it { should respond_to(:authenticate) }

it { should be_valid }

describe "when name is not present" do
    before { @user.name = " " }
    it { should_not be_valid }
end

describe "when email is not present" do
    before { @user.email = " " }
    it { should_not be_valid }
end

describe "when name is to long" do
    before { @user.name = "a" * 51 }
    it { should_not be_valid }
end

describe "when email format is invalid" do
    it "should be invalid" do
        addresses = %w[user@foo,com user_at_foo.org example.user@foo. 
                                        foo@bar_baz.com foo@bar+baz.com]
        addresses.each do |invalid_address|
            @user.email = invalid_address
            @user.should_not be_valid
        end
    end
end

describe "when email format is valid" do
    it "should be valid" do
        addresses = %w[user@foo.COM A_US-ER@f.b.org frst.lst@foo.jp a+b@baz.cn]
        addresses.each do |valid_address|
            @user.email = valid_address
            @user.should be_valid
        end
    end
end

describe "when email address is already taken" do
    before do
        user_with_same_email = @user.dup
        user_with_same_email.email = @user.email.upcase
        user_with_same_email.save
    end

    it { should_not be_valid }
end

describe "when password is not present" do
    before { @user.password = @user.password_confirmation = " " }
    it { should_not be_valid }
end

describe "when password doesn't match confirmation " do
    before { @user.password_confirmation = "mismatch" }
    it { should_not be_valid }
end

describe "when password confirmation is nil" do
    before { @user.password_confirmation = nil }
    it { should_not be_valid }
end

describe "when password is too short" do
    before { @user.password = @user.password_confirmation = "a" * 5}
    it { should_not be_valid }
end

describe "return value of authenticate method" do
    before { @user.save }
    let(:found_user) { User.find_by_email(@user.email) }

    describe "with valid password" do
        it { should == found_user.authenticate(@user.password) }
    end

    describe "with invalid password" do
        let(:user_for_invalid_password) { found_user.authenticate("invalid") }

        it { should_not == user_for_invalid_password }
        specify { user_for_invalid_password.should be_false }
    end
end
end 

私のuser.rbは

class User < ActiveRecord::Base
  attr_accessible :name, :email, :password, :password_confirmation
  has_secure_password

  before_save { |user| user.email = user.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, format: { with: VALID_EMAIL_REGEX },
                                    uniqueness: { case_sensitive: false }
  validates :password, presence: true, length: {minimum: 6 }
  validates :password_confirmation, presence: true
end

これがgithubのプロジェクト全体です

私はActiveRecordのドキュメントを読むことを含む解決策を徹底的に探しましたが、困惑しています。

どんな助けでも大歓迎です。

4

2 に答える 2

0

ヘルパーメソッドの多くは、コンソールで呼び出すことができません。

多くの場合、helper.helpernameを介して呼び出すことでアクセスできますが、これが常に機能するとは限りません。

データベースからどのようにユーザーを取得していますか?

例えばuser = User.find_by_name('name')

于 2013-03-18T07:17:24.300 に答える
0

このエラー:

NameError: undefined local variable or method 'user' for main:Object

可変ユーザーをインスタンス化しなかったと言います。

データベースからユーザー変数にユーザーをフェッチしましたか?

irbセッションは次のようになります。

データベースにユーザーがいるかどうかを確認するには:

> User.all

「Jon」という名前のデータベースに有効なユーザーがいる場合

> user = User.find_by_name("Jon")
> current_user = user.auhenticate("valid_password") #will work

データベースにユーザーがいない場合:

> User.create(name: "Jon", email: "user@example.com",
                  password: "foobar", password_confirmation: "foobar")
> user = User.find_by_name("Jon")
> current_user = user.auhenticate("valid_password") #will work

RSpecはテストデータベースを使用しますが、デフォルトのRails cは開発データベースを使用するため、Rails cで作業する場合は、開発データベースにレコードがあることを確認してください。

rails cコマンドは、すべてのプロジェクトライブラリをロードしています。

于 2013-03-18T12:50:06.710 に答える