0

我遇到了 ajax 请求的问题。该功能是增加/减少购物车中的项目。当增量事件被触发时,post 数组在打印时为空。

Firebug 显示在 post 请求中发送的参数,但在控制器中没有任何到达。

实施的解决方案有点邋遢,但这是必须的。jquery 是 document.ready 签名之外的非匿名方法,很可能是导致问题的原因。

这就是我所拥有的...

jQuery

    function increment_item($ciid){     
    $("#processing").fadeIn("fast");
    $.ajax({
        url: "<?=BASE_URL?>landing/inc_cart_item",
        type: "post",
        dataType: "json",
        data: {id:$ciid,},
        success: function(data){
            $("#processing").fadeOut("fast");
            if(data.error) {
                alert(data.error);
            } else {
               // parent.$('#line1').text(data.line1);
                //parent.$('#line2').text(data.line2);
                //parent.$('#address-dialog').dialog('close');
                alert(data.line1);
            }
        }
    });
    //return false;           
};

视图中的触发器...

<a href="#" onClick="increment_item(<?=$item['cart_item_id']?>)" class="qty-inc-button" >More</a>

控制器方法...

    function inc_cart_item(){

    $return_val = $this->cart_model->increment_cart_item($this->session->userdata('cart_id'),$this->input->post('id'));

}

编辑添加生成的源...

表数据

            </thead>
                    <tbody id="item_2823">
            <tr>
                <td>
                    <img src="http://localhost/cdn/images/112/7/thumb_lemberger2010.jpg">
                                                <p style="color: #666;">Bader</p>
                                            <p style="font-size: 16px;">Stettener Lindhälder Lemberger</p>
                    <a href="#" onclick="remove_item(2823)" id="remove-item-button" class="remove-item-button">Remove this item</a>
                </td>
                <td class="align-td-center">
                    8.20€                    </td>
                <td class="align-td-center">
                    <a href="#" onclick="increment_item(2823)" id="qty-inc-button" class="qty-inc-button">More</a>
                        1                        <a href="#" onclick="decrement_item(2823)" id="qty-dec-button" class="qty-dec-button">Less</a>
                    <input id="item_id" class="item_id" value="2823" type="hidden">
                </td>
                <td class="align-td-center">
                    <span id="value-shipping-2823">8.20€&lt;/span>
                </td>
            </tr>
        </tbody>
                                <tbody id="item_2824">
            <tr>
                <td>
                    <img src="http://localhost/***/cdn/images/112/5/thumb_kerfttropfle2010.jpg">
                                                <p style="color: #666;">Bader</p>
                                            <p style="font-size: 16px;">Kerftströpfle</p>
                    <a href="#" onclick="remove_item(2824)" id="remove-item-button" class="remove-item-button">Remove this item</a>
                </td>
                <td class="align-td-center">
                    5.10€                    </td>
                <td class="align-td-center">
                    <a href="#" onclick="increment_item(2824)" id="qty-inc-button" class="qty-inc-button">More</a>
                        1                        <a href="#" onclick="decrement_item(2824)" id="qty-dec-button" class="qty-dec-button">Less</a>
                    <input id="item_id" class="item_id" value="2824" type="hidden">
                </td>
                <td class="align-td-center">
                    <span id="value-shipping-2824">5.10€&lt;/span>
                </td>
            </tr>
        </tbody>

生成的jquery

function increment_item($ciid){     
    $("#processing").fadeIn("fast");
    $.ajax({
        url: "http://localhost/***/***/landing/inc_cart_item",
        type: "POST",
        dataType: "json",
        data: {id:$ciid},
        success: function(data){
            $("#processing").fadeOut("fast");
            if(data.error) {
                alert(data.error);
            } else {
               // parent.$('#line1').text(data.line1);
                //parent.$('#line2').text(data.line2);
                //parent.$('#address-dialog').dialog('close');
                alert(data.line1);
            }
        }
    });           
};

再次,我在这里尝试使用的 jQuery 函数位于 $(document).ready(function() { 代码块中所有其他生成的 jQuery 之外,我不知道这是否是原因。

我一直在努力解决这个问题,感谢所有帮助。

谢谢

4

1 回答 1

0

您确定数据发布正确吗?您的数据 json 中有一个逗号。

你也可以试试:

   data: JSON.stringify({id:$ciid})
于 2013-09-20T19:24:27.737 回答