-1

我正在使用 jquery post 在服务器上提交数据,并且数据具有 json 数组作为其中一个值。

$.post({
type: "POST",
url: "http://someurl",
data: {
    id = 12345, order_items: [{
        "product_id": "1065",
        "sku": {
            "SKU": "RHJ",
            "msg": "In Stock"
        },
        "qty": "1"
    }]
    cup = 0, 
    rec = 0
},

});

现在我怎样才能发布它并得到结果?

4

1 回答 1

1

而不是 $>post 使用 $.ajax 请求,这将为您提供很好的控制权。

$.ajax(
{
    type : 'POST',
    data : $(this).serialize(), // this = $('#form_id') is form id
    url  : $(this).attr('action'),
    //dataType:'json',
    success : function(data)
    {
        $('#wrapper').html(data);
    }
});
于 2012-06-27T13:47:36.873 回答