我的用户选择了一个产品。
现在他在购物车中,他最终想要其中两个
因此,购物车中有一种增加数量的表格
order_items / index.html.erb
<% @items.each do |item| %>
<%= image_tag(item.product.attachments.first.url, class: "tiny_image") %>
<%= link_to item.product.title, clients_product_path(item.product_id), class: "title_in_tab" %>
<%= item.quantity %>
<%= number_to_currency_euro item.product.price %>
<%= item.size.size_name %>
<%= form_for edit_clients_order_item_path(item), method: :patch, remote: true do |f| %>
<%= f.hidden_field :id, value: item.id %>
<%= f.hidden_field :product_id, value: item.product.id %>
<%= f.hidden_field :size_id, value: item.size.id %>
<%= f.select :quantity, [1,2,3,4,5] %>
<%= f.submit "Modifier" %>
<% end %>
<%= link_to clients_order_item_path(item), method: :delete, remote: true ,data: {confirm: "Voulez vous vraiment supprimer cet article?"} do %>
<i class="fa fa-trash"></i>
<% end %>
在 shopping_car.rb
中我有这种方法来增加数量
def inscrease_item(id:, quantity:1, product_id:, size_id:, user_id:, order_id:)
@size = Size.find_by(id: size_id)
@order_item = order.items.find_by(product_id: product_id, size_id: size_id)
@order_item.quantity = quantity.to_i
@order_item.save
update_sub_total!
@size.quantity -= quantity.to_i
@size.save
end
在 order_items_controller.rb 中 我有:
def edit
@item = OrderItem.find(params[:id])
end
def update
binding.pry
@item = current_cart
current_cart.inscrease_item(
id: params[:id],
order_id: params[:order_id],
product_id: params[:product_id],
quantity: params[:quantity],
user_id: params[:user_id],
size_id: params[:size_id])
end
private
def order_item_params
params.require(:order_item).permit(:id, :product_id, :user_id, :quantity, :size_id, :order_id)
end
我在更新方法中添加了一个断点:
@item 返回nil,但我不知道是怎么回事...
这就是返回绑定撬动的原因
30: def update
31: binding.pry
=> 32: @item = OrderItem.find(params[:id])
33: @item.inscrease_item(
34: order_item_params
35: )
36: end
[1] pry(#<Clients::OrderItemsController>)> @item
=> nil
[2] pry(#<Clients::OrderItemsController>)> params
=> <ActionController::Parameters {"utf8"=>"✓", "_method"=>"patch", "/clients/cart/items/111/edit"=>{"id"=>"111", "product_id"=>"19", "size_id"=>"41", "quantity"=>"4"}, "commit"=>"Modifier", "controller"=>"clients/order_items", "action"=>"update"} permitted: false>
答案 0 :(得分:1)
@item
尚未设置,因为侧面的箭头指向要执行的下一条语句。因此@item = OrderItem.find(params[:id])
尚未执行。将断点下移一行或进一步执行一步。
此外,您将错误的参数传递给form_for
助手。第一个参数应该是代表对象的记录或符号/字符串。您可能要使用form_with
帮助程序,而不要使用:url
选项。
最后但并非最不重要的是,正如您在参数中(从pry输出中看到的那样),当前数据存在,但嵌套在参数散列中。
{
"utf8" => "✓",
"_method" => "patch",
"/clients/cart/items/111/edit" => {
"id" => "111",
"product_id" => "19",
"size_id" => "41",
"quantity" => "4"
},
"commit" => "Modifier",
"controller" => "clients/order_items",
"action" => "update"
}
还应该像这样访问数据。
params['/clients/cart/items/111/edit'][:id] #=> "111"
# ^ this is due to the wrong first argument
# of the form_for helper