所以我有一个库存应用程序API。在特定情况下,我需要将库存的unit_price提高10美元。我已经将我的条件设置为0或10,并且该变量保存在属性y factor中。出于测试目的,我刚刚将yfactor设置为10。
def price
Inventory.unit_price= Inventory.unit_price + yfactor.to_f
respond_to do |format|
format.json{render}
end
end
我得到未定义的方法(unit_price)错误。
使用导轨4。