亲宝软件园·资讯

展开

Ajax传Jsond Ajax传Jsond Mvc后台接收实例

人气:0
想了解Ajax传Jsond Mvc后台接收实例的相关内容吗,在本文为您仔细讲解Ajax传Jsond的相关知识和一些Code实例,欢迎阅读和指正,我们先划重点:Ajax,Jsond,下面大家一起来学习吧。
复制代码 代码如下:

//后台
[HttpPost]
public JsonResult CheckStock(IEnumerable<pvIdsCount> pvIds)
{
}
public class pvIdsCount
{
public int pvId { set; get; }
public int count { set; get; }
}
//前台
$(document).ready(function () {
$('#checkout').click(function ()
{
var productIdCounntList = [];
var allPvId = $(".productVariantIdAll");
$.each(allPvId, function (index, data) {
var productIdCounnt = { pvId: data.getAttribute("data-Id"), count: data.getAttribute("data-Count")};
productIdCounntList.push(productIdCounnt);
});
$.ajax({
url:"@Url.Action("CheckStock")",
type:"POST", //复杂对象传值用Post,
data: JSON.stringify ({ pvIds: productIdCounntList }), //SON.stringify ---must 用来序列化
dataType: "json",
contentType: 'application/json; charset=utf-8', //must
error: function () {
alert("1");
},
success: function (data) {
}

加载全部内容

相关教程
猜你喜欢
用户评论