我是学习 Rails 的新手,但我目前的理解attr_accessible
是它使类的属性在类范围之外可用。
但是,如果不创建属性attr_accessible
,我可以在 Rails 控制台的辅助方法参数中访问该属性。
'005 > Todo.create(:todo_item => "Pay internet bill")
(0.1ms) begin transaction
SQL (0.6ms) INSERT INTO "todos" ("created_at", "todo_item", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 18 Aug 2012 09:55:33 UTC +00:00], ["todo_item", "Pay internet bill"], ["updated_at", Sat, 18 Aug 2012 09:55:33 UTC +00:00]]
(339.1ms) commit transaction
=> #<Todo id: 6, todo_item: "Pay internet bill", created_at: "2012-08-18 09:55
然而,在控制器动作中做同样的事情:
def add
Todo.create(:todo_item => params[:todo_text])
redirect_to :action => 'index'
end
在模型中我需要指定
attr_accessible :todo_item
为什么这个属性可以在 Rails 控制台中访问,但不能在控制器方法中访问?