我的逻辑测试库存供应;并且<操作员功能正常。如何为“instock”分配布尔值? (使用POST)在此测试中,在两个条件下,值保持不变,此示例代码不起作用。
此代码也放在一个html.erb文件中,这个代码有更好的位置吗?
<% if @inventory.needed < @inventory.amount then %>
<% @inventory.instock = 'true' %>
<% else %>
<% @inventory.instock = 'false' %>
<% end %>
提前感谢您的建议!
答案 0 :(得分:1)
您将instock设置为等于字符串值“true”。
@inventory.instock = true
是你想要的......