我从http://guides.rubyonrails.org/getting_started.html
获得了以下示例模型/ post.rb
class Post < ActiveRecord::Base
validates :name, :presence => true
validates :title, :presence => true,
:length => { :minimum => 5 }
end
但它不起作用
NoMethodError in PostsController#index
undefined method `validates' for #<Class:0x7f1fd7b6d750>
答案 0 :(得分:0)
这是一个版本问题。安装Rails 3解决了这个问题。