我的用戶模型沒有:name
字段,但我想在我的註冊表單中包含:name
字段,該字段將用於在after_create
中創建另一個模型的記錄。虛擬屬性與Devise in Rails 4
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
如何從註冊表單中獲取名稱?
我的標題可能是錯的,所以請隨時提出一個更好的建議。 –
我在這裏找到了我的答案:http://stackoverflow.com/a/17384426/519632 –