我基本上是在尝试保存我在模型中生成的密钥。这不是用户在表格中填写的内容。当我转到 /model/new 时,我不断收到错误消息
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 属性生成并运行了迁移,并检查了该列是否存在。