主頁 > 知識庫 > MVC后臺創(chuàng)建Json(List)前臺接受并循環(huán)讀取實例

MVC后臺創(chuàng)建Json(List)前臺接受并循環(huán)讀取實例

熱門標(biāo)簽:智能電話營銷外呼系統(tǒng) 萊蕪?fù)夂綦婁N機器人價格 五常地圖標(biāo)注 鄭州400電話辦理 聯(lián)通 戶外地圖標(biāo)注軟件手機哪個好用 地圖標(biāo)注和認(rèn)領(lǐng) 凱立德導(dǎo)航官網(wǎng)地圖標(biāo)注 長春呼叫中心外呼系統(tǒng)哪家好 電銷語音自動機器人
---------------------------后臺-------------------
復(fù)制代碼 代碼如下:

[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>轉(zhuǎn)換為 Json ArrayT>
}
else
{
return Json("success");
}
}
return null;
}
public class pvIdsCount
{
public int pvId { set; get; }
public int count { set; get; }
}

---------------------------前臺-------------------
復(fù)制代碼 代碼如下:

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創(chuàng)建DLL動態(tài)鏈接庫的方法
  • VC創(chuàng)建進程CreateProcess的方法
  • VC實現(xiàn)動態(tài)菜單的創(chuàng)建方法
  • VC++創(chuàng)建msi文件的方法
  • MVC 5 第一章 創(chuàng)建MVC 5 web應(yīng)用程序
  • c#創(chuàng)建vc可調(diào)用的com組件方法分享
  • 解析VC中創(chuàng)建DLL,導(dǎo)出全局變量,函數(shù)和類的深入分析
  • VC6.0如何創(chuàng)建以及調(diào)用動態(tài)鏈接庫實例詳解
  • VC創(chuàng)建圓角dialog的實現(xiàn)方法

標(biāo)簽:紅河 衢州 宣城 西寧 湖州 西藏 岳陽 福州

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《MVC后臺創(chuàng)建Json(List)前臺接受并循環(huán)讀取實例》,本文關(guān)鍵詞  MVC,后臺,創(chuàng)建,Json,List,前臺,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《MVC后臺創(chuàng)建Json(List)前臺接受并循環(huán)讀取實例》相關(guān)的同類信息!
  • 本頁收集關(guān)于MVC后臺創(chuàng)建Json(List)前臺接受并循環(huán)讀取實例的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章