我无法在页面上显示产品的价格。每当我更新价格时,它似乎都无法保存。
这是我的迁移文件,其中我向产品添加了价格(整数)。
class AddPriceToProduct < ActiveRecord::Migration[5.0]
def change
add_column :products, :price, :integer
end
end
这是我尝试显示价格的地方:
<p id="notice"><%= notice %></p>
<%= image_tag @product.image.url(:large) %>
<p>
<strong>Title:</strong>
<%= @product.titel %>
</p>
<p>
<strong>Description:</strong>
<%= @product.beschrijving %>
</p>
<p>
<strong>Price:</strong>
<%= @product.price %>
</p>
<%= link_to 'Edit', edit_product_path(@product) %>
<%= link_to 'Destroy', @product, :method => :delete, :confirm => "Are you sure?" %>
<%= link_to 'Back', products_path %>
我希望有人可以帮我解决这个问题, 真诚的Arend
答案 0 :(得分:1)
感谢工程师们的解决。我忘了通过参数允许价格。
以下是我需要参数的方法
git merge --no-ff