当前位置:K88软件开发文章中心编程语言AjaxAjax01 → 文章内容

Ajax传Jsond Mvc后台接收实例

减小字体 增大字体 作者:     来源:asp编程网  发布时间:2018-12-30 9:22:41

复制代码 代码如下:

//后台
[HttpPost]
public JsonResult CheckStock(IEnumerable pvIds)

{
}
public class pvIdsCount

{
public int pvId
{ set
get
}
public int count
{ set
get
}
}
//前台
$(document).ready(function ()
{
$(&apos

#checkout&apos
).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: &apos
application/json
charset=utf-8&apos
, //must
error: function ()
{
alert("1")

},

success: function (data)
{
}

Ajax传Jsond Mvc后台接收实例