我有一个购物车,在我的购物车页面中,我试图让用户灵活地更新数量,我希望只有一个数量字段可以编辑。 这是我的代码
class Cart < ActiveRecord::Base
# attr_accessible :title, :body
has_many :line_items, dependent: :destroy
class LineItem < ActiveRecord::Base
belongs_to :product
belongs_to :cart
#before_save :quantity
attr_accessible :cart_id, :product_id, :quantity
class Product < ActiveRecord::Base
has_many :photos, :dependent => :destroy
has_many :line_items
accepts_nested_attributes_for :photos, :line_items
在我的视图中
<p id="notice"><%= notice %></p>
<table>
<tr>
<th> ID </th>
<th>Name </th>
<th>Unit Price </th>
<th> Quantity </th>
<th> Price </th>
<th></th>
</tr>
<%= render :partial => 'line_item' %>
</table>
<span> Total </span><%= number_to_currency(Cart.get_total(session[:cart_id])) %>
部分视图
<% @lineitem.each do |item| %>
<tr>
<td><%= item.id %>
<td><%= item.product.name %></td>
<td><%= number_to_currency(item.product.price) %></td>
<td><%= item.quantity %></td>(Make this editable with update button)
<td><%= number_to_currency(LineItem.get_price(item.id,item.product.price))
%></td>
<td><%= link_to 'Remove', item , confirm: 'Are you sure?', method: :delete %></td>
</tr>
<% end %>
<%= link_to 'Edit', edit_line_item_path %>
**Thanks for the reply,**
<% @line_item.each do |item| %>
<tr>
<td><%= item.id %>
<td><%= item.product.name %></td>
<td><%= number_to_currency(item.product.price) %></td>
<td><%= form_for(@line_item) do |f| %>
<div class="field">
<%= f.label :quantity %><br />
<%= f.number_field :quantity %>
</div>
<% end %>
</td>
<td><%= number_to_currency(LineItem.get_price(item.id,item.product.price))
%></td>
<td><%= link_to 'Remove', item , confirm: 'Are you sure?', method: :delete %></td>
</tr>
<% end %>
如何使item.quantity可以编辑,而其他所有人都是只读的?
答案 0 :(得分:0)
这一行
attr_accessible :cart_id, :product_id, :quantity
保护您的所有属性免受大量分配,cart_id
,product_id
和quantity
除外。这意味着除非您单独设置其他属性,否则其他属性将无法编辑。如果要允许其他属性可编辑,则必须将它们添加到此行。
@nathanvda和@simonmorley是对的。您需要确保提出问题并花时间让其他可能帮助您的人理解。