练习《web 开发敏捷之道 3nd-rails 进行 web 开发》中对应程序,在第 6 章节维护商品时,增加 price 字段,但是不管新增还是编辑商品,保存后商品价格始终显示为 0.0。不知道哪里出问题? 开发环境:Rails 4.2.0,Ruby 2.1.2。部分代码如下:
t.decimal "price", precision: 8, scale: 2, default: 0.0
index 中增加:
<td><%= product.price %></td>
form 中增加:
<div class="field">
<%= f.label :price %><br>
<%= f.text_field :price %>
</div>
show 中增加:
<p>
<strong>Price:</strong>
<%= @product.price %>
</p>