我的用户模型没有:name
字段,但我想:name
在我的注册表单中包含一个字段,该字段将用于在after_create
.
class User < ActiveRecord::Base
after_create :create_thing
private
def create_thing
@thing = Thing.new
@thing.name = <here's where I need help>
@thing.save!
end
end
如何从注册表单中获取姓名?