设置属性等于另一个

时间:2015-06-25 16:26:38

标签: ruby-on-rails ruby ruby-on-rails-4 attributes

所以我有一个库存应用程序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。

0 个答案:

没有答案