如何使用jquery post向服务器提交数据

时间:2012-06-27 13:44:08

标签: jquery json post

我正在使用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
},

});

现在我如何发布并获得结果?

1 个答案:

答案 0 :(得分: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);
    }
});