本篇內(nèi)容介紹了“Asp.net怎么實(shí)現(xiàn)無(wú)刷新調(diào)用后臺(tái)實(shí)體類數(shù)據(jù)并以Json格式返回”的有關(guān)知識(shí),在實(shí)際案例的操作過(guò)程中,不少人都會(huì)遇到這樣的困境,接下來(lái)就讓小編帶領(lǐng)大家學(xué)習(xí)一下如何處理這些情況吧!希望大家仔細(xì)閱讀,能夠?qū)W有所成!
創(chuàng)新互聯(lián)專注于豐林網(wǎng)站建設(shè)服務(wù)及定制,我們擁有豐富的企業(yè)做網(wǎng)站經(jīng)驗(yàn)。 熱誠(chéng)為您提供豐林營(yíng)銷型網(wǎng)站建設(shè),豐林網(wǎng)站制作、豐林網(wǎng)頁(yè)設(shè)計(jì)、豐林網(wǎng)站官網(wǎng)定制、小程序制作服務(wù),打造豐林網(wǎng)絡(luò)公司原創(chuàng)品牌,更為您提供豐林網(wǎng)站排名全網(wǎng)營(yíng)銷落地服務(wù)。新建一般處理程序
public class Temp { public int Index { get; set; } public string Description { get; set; } public string ImagePath { get; set; } public DateTime MyDate { get; set; } } //數(shù)據(jù)源 ListlistTemp = new List () { new Temp(){ Index=1,ImagePath="Desert.jpg", Description="圖片1",MyDate=DateTime.Now}, new Temp(){Index=2,ImagePath="Chrysanthemum.jpg", Description="圖片2",MyDate=DateTime.Now}, new Temp(){Index=3,ImagePath="Penguins.jpg", Description="圖片3",MyDate=DateTime.Now}, new Temp(){Index=4,ImagePath="Jellyfish.jpg", Description="圖片4",MyDate=DateTime.Now}, new Temp(){Index=5,ImagePath="Tulips.jpg", Description="圖片5",MyDate=DateTime.Now} }; public void ProcessRequest(HttpContext context) { string index = context.Request["Index"]; string jsonStr = string.Empty; foreach (var item in listTemp) { if (item.Index.ToString() == index) { JavaScriptSerializer serializer = new JavaScriptSerializer(); jsonStr = serializer.Serialize(item); //序列化為json格式 break; } } context.Response.Write(jsonStr); }
前臺(tái)JS代碼
$.getJSON("imageChange.ashx", { Index: i - 1 }, function (result) { $("#<%=lblDescription.ClientID %>").text(result.Description); $("#<%=Image1.ClientID %>").attr("src", path + result.ImagePath.substr(result.ImagePath.lastIndexOf('/') + 1)); var d = eval("new " + result.MyDate.replace(/\//g, "")); $("#<%=lblDate.ClientID %>").text(Todate(d.ToLocalTime().toString())); });
“Asp.net怎么實(shí)現(xiàn)無(wú)刷新調(diào)用后臺(tái)實(shí)體類數(shù)據(jù)并以Json格式返回”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識(shí)可以關(guān)注創(chuàng)新互聯(lián)網(wǎng)站,小編將為大家輸出更多高質(zhì)量的實(shí)用文章!