我基本上試圖保存我在模型中生成的密鑰。這不是用戶用表格填寫的內容。我不斷收到錯誤,當我去/型號/新如何將屬性保存到不是來自表單參數的數據庫?
undefined method `presentation_url=' for #<Class:0x007fc3c7d8ca38>
這裏是我在模型中做什麼的一般想法。
class Product < ActiveRecord::Base
attr_accessible :description, :name, :price, :pdf, :banner
self.presentation_url = "a generated url that is not coming from the form"
end
我已經爲presentation_url屬性生成並運行遷移,並檢查該列是否存在。