主页 > 知识库 > MVC后台创建Json(List)前台接受并循环读取实例

MVC后台创建Json(List)前台接受并循环读取实例

热门标签:阿里云 科大讯飞语音识别系统 银行业务 Linux服务器 电子围栏 Mysql连接数设置 服务器配置 团购网站
---------------------------后台-------------------
复制代码 代码如下:

[HttpPost]
public JsonResult CheckStock(IEnumerablepvIdsCount> pvIds)
{
var resultList = new ListpvIdsCount>();
if (pvIds != null)
{
foreach (var pvIdsCount in pvIds)
{
var pvId = pvIdsCount.pvId;
var count = pvIdsCount.count;
var stock = _productService.GetProductVariantById(pvId).StockQuantity;
if (stock - count 0)
{
var pvIdC=new pvIdsCount();
pvIdC.pvId = pvId;
pvIdC.count = stock;
resultList.Add(pvIdC);
}
}
if (resultList.Count > 0)
{
return Json(new { resultList }); //Json() ---MVC的JSON 方法会自动把ListT> IEnumerableT>转换为 Json ArrayT>
}
else
{
return Json("success");
}
}
return null;
}
public class pvIdsCount
{
public int pvId { set; get; }
public int count { set; get; }
}

---------------------------前台-------------------
复制代码 代码如下:

AJAX
success: function (data) {
if (data == "success") {
}
} else {
$.each(data.resultList, function (index, value) {
$("#Item_PVId_" + value.pvId).html("This Product's Stock Not Enough.Stock is " + value.count);
});
}
}
您可能感兴趣的文章:
  • VC创建DLL动态链接库的方法
  • VC创建进程CreateProcess的方法
  • VC实现动态菜单的创建方法
  • VC++创建msi文件的方法
  • MVC 5 第一章 创建MVC 5 web应用程序
  • c#创建vc可调用的com组件方法分享
  • 解析VC中创建DLL,导出全局变量,函数和类的深入分析
  • VC6.0如何创建以及调用动态链接库实例详解
  • VC创建圆角dialog的实现方法

标签:蚌埠 衡水 枣庄 广元 衢州 大理 萍乡 江苏

巨人网络通讯声明:本文标题《MVC后台创建Json(List)前台接受并循环读取实例》,本文关键词  ;如发现本文内容存在版权问题,烦请提供相关信息告之我们,我们将及时沟通与处理。本站内容系统采集于网络,涉及言论、版权与本站无关。
  • 相关文章
  • 收缩
    • 微信客服
    • 微信二维码
    • 电话咨询

    • 400-1100-266