0

7.3.2 name と Gravatarの段階で、Ruby on Rails 3 Tutorials ( Mhartl ) chapter-7 に従っています。

ここで、ブラウザで開いたときに問題に直面しています。

ActiveRecord::RecordNotFound in UsersController#show
Couldn't find User with id=1
Rails.root: C:/RubyOnRails/MyWorkPlace/sample_app_1
Application Trace | Framework Trace | Full Trace
app/controllers/users_controller.rb:5:in `show'
Request
Parameters:
{"id"=>"1"}
Show session dump
Show env dump
Response
Headers:
None

また、User_controller.rb と user.rb の下に貼り付けました

ユーザー.rb:

require 'digest'

class User < ActiveRecord::Base

    attr_accessor :pasword
    attr_accessible :login,
                    :username,
                    :email,
                    :password,
                    :password_confirmation,
                    :remember_me

    email_regex = /\A[\w+\-.]+@[a-z\-.]+\.[a-z]+\z/i

    validates :name, :presence => true,
                     :length => { :maximum => 50 }


    validates :email, :presence => true,
                      :format => { :with => email_regex }, 
                      :uniqueness => { :case_sensitive => false }

    validates :pasword, :presence     => true,
                        :confirmation => true,
                        :length       => { :within => 6..40 }

    def self.authenticate(email, submitted_password)
        user = find_by_email(email)
        return nil if user.nil?
        return user if user.has_password?(submitted_password)
    end

    before_save :encrypt_password

    def has_password?(submitted_password)
        encrypted_password == encrypt(submitted_password)
    end

    private

    def encrypt_password
        self.salt = make_salt if new_record?
        self.encrypted_password = encrypt(password)
    end

    def encrypt(string)
        secure_hash("#{salt}--#{string}")
    end

    def make_salt
        secure_hash("#{Time.now.utc}--#{password}")
    end

    def secure_hash(string)
        Digest::SHA2.hexdigest(string)
    end                      

end

users_controller.rb:

class UsersController < ApplicationController

    def show
        @user = User.find(params[:id])
        @title = @user.name
    end

    def new
        @title = "Sign up"
    end
end
4

4 に答える 4

1

id=1 でユーザーを作成しましたか? 確認するには、Rails コンソールに移動し、ID 1 のユーザーを取得します。ユーザーが存在しない場合は、作成します。

于 2012-07-02T11:13:44.933 に答える
0

私は同じ問題を抱えていました。私の場合、破棄アクションの「redirect_to」の「posts_path」に「s」がありませんでした。それはpost_path Noobでしたが、調べた価値があります。

于 2014-02-22T18:48:08.983 に答える
0

「user/1」が見つからなかった理由は、次のように入力してサンプル データ (db/seeds.rb) にマイクロポストを追加したときです。

users = User.order(:created_at).take(6)
50.times do
  content = Faker::Lorem.sentence(5)
  users.each { |user| user.microposts.create!(content: content) }
end

先ほどのコードの「END」を忘れてしまったので、db/seeds.rb の全体像は

User.create!(name:  "Example User",
         email: "example@railstutorial.org",
         password:              "foobar",
         password_confirmation: "foobar",
         admin:     true,
         activated: true,
         activated_at: Time.zone.now)

99.times do |n|
    name  = Faker::Name.name
    email = "example-#{n+1}@railstutorial.org"
    password = "password"
    User.create!(name:  name,
          email: email,
          password:              password,
          password_confirmation: password,
          activated: true,
          activated_at: Time.zone.now)
end

users = User.order(:created_at).take(6)
50.times do
  content = Faker::Lorem.sentence(5)
  users.each { |user| user.microposts.create!(content: content) }
end
于 2015-07-05T23:29:14.287 に答える
0

せいぜい、あなたが attr_accessor :pasword を持っているのがわかります

私はそれが :password であるべきだと思います

オントピック:

restful コントローラーにはいくつかのアクションが欠けているため、ユーザーを作成することはできません。RESTful コントローラーの詳細については、 http: //guides.rubyonrails.org/getting_started.html#restを参照してください。

class UsersController < ApplicationController


  def show
    @user = User.find(params[:id])
    @title = @user.name
  end

  def new 
    @user = User.new #this creates a empty user object to be filled with signup data
    @title = "Sign up"
  end

  def create 
    @user = User.new(params[:user]) #this creates a new user object with the data you entered before.
    if @user.save #if the data is valid, save it
      redirect_to user_path(@user) #and go to the @user show action
    else
      render :action => :new #edit the invalid user data
    end
  end

  def edit
    @user = User.find(params[:id])
  end

  def update
    @user = User.find(params[:id])
    if @user.update_attributes(params[:user])
      redirect_to user_url(@user)
    else
      render edit_user_url(@user)
    end
  end

  def index
    @users = User.all
  end

  def destroy
    @user = User.find(params[:id]
    @user.destroy
    redirect_to :action => :index
  end

end

編集:安らかな行動を完了してください

于 2012-07-02T11:26:14.633 に答える