如何在rails中添加一些ajax到购物车?

时间:2012-05-10 16:09:16

标签: jquery ruby-on-rails ajax

所有我想用简单的话做:当输入值改变时,我将把这个值放在db中。 我想添加一些ajax。我想做这个: 当我更改输入值(focusout)时,我调用了一些方法,使用get-parametr,我的方法如下所示:

def update_quantity
    @cart = current_cart
    @line_item = LineItem.find(params[:id])
    respond_to do |format|
      if @line_item.update_attribute(:quantity, params[:quantity]) #&& @cart.id == params[:cart]
        format.html { redirect_to(@line_item, :notice => 'Line item was successfully updated.') }
        format.xml  { head :ok }
      else
        format.html { render :action => "edit" }
        format.xml  { render :xml => @line_item.errors, :status => :unprocessable_entity }
      end
    end
  end

这是测试工作,所以它可能有一些不好的解决方案,我的观点看起来像这样:

%p
    = line_item.art_name
    = line_item.ART_ID
    = line_item.art_code
    &times
    .cart-quantity
        = line_item.quantity        
        %input{ :class => "quantity", :value => line_item.quantity }
        = link_to "обновить", :controller => "line_items", :action => "update_quantity", :id => line_item.id, :quantity => line_item.quantity, :cart => @cart.id    
    = line_item.total_price

如你所见,我想:当输入焦点出来时,我得到新的隐藏链接,并调用它,调用方法,这是上面写的。 我需要做什么?要创建哪些文件以及在哪里以及如何执行此操作?想要一些ajax)

我想用简单的话来做:当输入值改变时,我将把这个值放在db中。

1 个答案:

答案 0 :(得分:1)

您不需要隐藏链接即可完成此操作。使用html元素的onblur字段:

:javascript
  function updateQuantity() {
    $.ajax({
       url: "/line_items/update_quantity",
       type: "POST",
       data: {id: $(this).attr('id'), quantity: $(this).attr('quantity'), cart: $(this).attr('cart_id')} 
    })
  }

%input.quantity{:value => line_item.quantity, :onblur => updateQuantity(); :id => line_item.id, :quantity => line_item.quantity, :cart => @cart.id}

在这个例子中,我内联了javascript,它应该真的进入你的application.js document.ready()块

$(document).ready(function() {
  $(".quantity").onfocusout(function() {
     $.ajax({
           url: "/line_items/update_quantity",
           type: "POST",
           data: {id: $(this).attr('id'), quantity: $(this).attr('quantity'), cart: $(this).attr('cart_id')} 
        })
  })
})