标签: ruby-on-rails models
我有一个名为item的模型,其中有一个名为price的列。我假设价格将作为实例变量存储在item中,但方法
def price @price end
什么都不返回。所以我的问题是如何从我的模型中访问和覆盖从数据库中提取的价格。
答案 0 :(得分:8)
您根据Rails guides
def price self[:price] end