NoMethodError:未定义的方法`save'rails console

时间:2012-12-30 21:00:12

标签: ruby-on-rails railstutorial.org

我正在从ruby.railstutorial.org学习RoR,我已经创建了一个模型,当我试图向其添加数据并通过rails控制台保存时出现错误。 (我使用mysql)

Rails控制台

 User.new(username: "test", password: "test123", password_confirmation: "test123", email: "test@fs.in", role: "admin" )
 => #<User id: nil, username: "test", password: "test123", email: "test@fs.in", role: "admin", created_at: "2012-01-01 00:00:00", updated_at: "2012-01-01 00:00:00", password_confirmation: "test123">

User.save给出以下错误

NoMethodError: undefined method `save' for #<Class:0x0000000422b628> from /home/ramadas/.rvm/gems/ruby-1.9.3-p327@rails3tutorial2ndEd/gems/activerecord-3.2.9/lib/active_record/dynamic_matchers.rb:50:in `method_missing'
from (irb):15
from /home/ramadas/.rvm/gems/ruby-1.9.3-p327@rails3tutorial2ndEd/gems/railties-3.2.9/lib/rails/commands/console.rb:47:in `start'
from /home/ramadas/.rvm/gems/ruby-1.9.3-p327@rails3tutorial2ndEd/gems/railties-3.2.9/lib/rails/commands/console.rb:8:in `start'
from /home/ramadas/.rvm/gems/ruby-1.9.3-p327@rails3tutorial2ndEd/gems/railties-3.2.9/lib/rails/commands.rb:41:in `<top (required)>'
from script/rails:6:in `require'
from script/rails:6:in `<main>'

我的模特

class User < ActiveRecord::Base
  attr_accessible :email, :password, :password_confirmation, :role, :username
  validates :username, 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 }
  before_save { |user| user.email = email.downcase }
  before_save { |user| user.username = username.downcase }
  validates :password, presence: true, length: { minimum: 4 }
  validates :password_confirmation, presence: true
end

我已经检查了可能发生的每一个错误,但没有找到解决方案。请帮我弄清楚并解决这个问题。

1 个答案:

答案 0 :(得分:12)

您是在呼叫User.save还是User.new(username:...).save

类/模型User没有定义save方法,但类的实例(来自ActiveRecord::Base)。

尝试以下方法:

user = User.new(username:...)
user.save