- 生成没有 Active Record 的 Rails 应用程序
- 为 Mongoid (Mongodb & Mongoid) 添加了适当的宝石
- 在 config/ 中生成带有 rails 支持的 mongoid.yml 文件
- 使用典型的 CRUD 路由创建了一个朋友模型和用户控制器
一切正常,除了当我尝试做大量作业时,我得到:
"undefined method `attr_accesible' for Friend:Class"
模型,朋友.rb:
class Friend
include Mongoid::Document
field :first_name, :type => String
field :last_name, :type => String
field :adjective, :type => String
attr_accessible :first_name, :last_name, :adjective
end
development:
sessions:
default:
database: first_development
hosts:
- localhost:27017
options:
options:
test:
sessions:
default:
database: first_test
hosts:
- localhost:27017
options:
consistency: :strong
max_retries: 1
retry_interval: 0
想法?