我正在使用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
},
});
现在我如何发布并获得结果?
答案 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);
}
});