博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
MVC后台创建Json(List),前台接受并循环读取
阅读量:6469 次
发布时间:2019-06-23

本文共 1008 字,大约阅读时间需要 3 分钟。

 ---------------------------后台-------------------

[HttpPost]

        public JsonResult CheckStock(IEnumerable<pvIdsCount> pvIds)

        {
            var resultList = new List< pvIdsCount>();
            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 方法会自动把List<T> IEnumerable<T>转换为 Json Array<T>
                }
                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);
                                            });
                                                }
                                            }

 

转载地址:http://dqdko.baihongyu.com/

你可能感兴趣的文章
IntelliJ IDEA 注册码
查看>>
String字符串的截取
查看>>
DynamoDB Local for Desktop Development
查看>>
用javascript验证哥德巴赫猜想
查看>>
Shell编程-环境变量配置文件
查看>>
[Unity3d]DrawCall优化手记
查看>>
Struts2和Spring MVC的区别
查看>>
理解Javascript参数中的arguments对象
查看>>
p2:千行代码入门python
查看>>
bzoj1106[POI2007]立方体大作战tet*
查看>>
spring boot configuration annotation processor not found in classpath问题解决
查看>>
由中序遍历和后序遍历求前序遍历
查看>>
我学习参考的网址
查看>>
[Processing]点到线段的最小距离
查看>>
考研随笔2
查看>>
GitHub使用教程、注册与安装
查看>>
<<The C Programming Language>>讀書筆記
查看>>
git代码冲突
查看>>
解析查询 queryString 请求参数的函数
查看>>
学生选课系统数据存文件
查看>>