Ajax传输Jsond后前后台接受代码怎么实现

来源:爱站网时间:2022-03-16编辑:网友分享
爱站技术频道小编今天给大家说说看Ajax传输Jsond后前后台接受代码怎么实现的,如果你要深入了解清楚这方面的内容,下面的时间可以看看小编所整理的相关资料。
 

//后台
[HttpPost]
public JsonResult CheckStock(IEnumerable 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) {
}

Ajax传输Jsond后前后台接受代码怎么实现的内容想必朋友们都了解清楚了吧!看完有什么问题可以直接来网站找小编咨询。更多精彩内容尽在爱站技术频道网站 。

上一篇:传递多个参数实现方法

下一篇:javascript ajax功能函数详情介绍

您可能感兴趣的文章

相关阅读

热门软件源码

最新软件源码下载