我只是章-7在7.3.2名稱和的Gravatar舞臺on Rails的3個教程(Mhartl)下面的Ruby。的ActiveRecord :: RecordNotFound在UsersController#顯示
在這裏,我面臨的一個問題,當我在我的瀏覽器,它是開放的說:
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
user.rb:
require 'digest'
class User < ActiveRecord::Base
attr_accessor :pasword
attr_accessible :login,
:username,
:email,
:password,
:password_confirmation,
:remember_me
email_regex = /\A[\w+\-.][email protected][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
非常感謝你爲你的快速回復Aniruth,我只是檢查有沒有用戶ID是說,(找不到用戶使用id = 1) – Dennis
我試過讓新的使用身份證,但!!!! ActiveModel :: MassAssignmentSecurity :: Error:無法批量分配受保護的屬性:名稱 from c:/RubyOnRails/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/activemodel-3.2.3/lib/active_model /mass_assignment_security/sanitizer.rb:48:in'process_removed_attri butes' from c:/RubyOnRails/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/activemodel-3.2.3/lib/active_model/mass_assignment_security/ sanitizer.rb:20:在'debug_protected_attri bute_removal' – Dennis
打開控制檯並鍵入:'@user = User.new,@ user.name =「Name you want」等等,@ user.save'這應該保存一個用戶id = 1。你不能指定id,因爲它的一個受保護的屬性由rails自動處理。 – Vikko