如何解決ASP.NET MVC 遇到JSON循環(huán)調(diào)用的問(wèn)題?這個(gè)問(wèn)題可能是我們?nèi)粘W(xué)習(xí)或工作經(jīng)常見(jiàn)到的。希望通過(guò)這個(gè)問(wèn)題能讓你收獲頗深。下面是小編給大家?guī)?lái)的參考內(nèi)容,讓我們一起來(lái)看看吧!
創(chuàng)新互聯(lián)擁有10多年成都網(wǎng)站建設(shè)工作經(jīng)驗(yàn),為各大企業(yè)提供網(wǎng)站設(shè)計(jì)、網(wǎng)站制作服務(wù),對(duì)于網(wǎng)頁(yè)設(shè)計(jì)、PC網(wǎng)站建設(shè)(電腦版網(wǎng)站建設(shè))、app軟件開(kāi)發(fā)、wap網(wǎng)站建設(shè)(手機(jī)版網(wǎng)站建設(shè))、程序開(kāi)發(fā)、網(wǎng)站優(yōu)化(SEO優(yōu)化)、微網(wǎng)站、申請(qǐng)域名等,憑借多年來(lái)在互聯(lián)網(wǎng)的打拼,我們?cè)诨ヂ?lián)網(wǎng)網(wǎng)站建設(shè)行業(yè)積累了很多網(wǎng)站制作、網(wǎng)站設(shè)計(jì)、網(wǎng)絡(luò)營(yíng)銷經(jīng)驗(yàn),集策劃、開(kāi)發(fā)、設(shè)計(jì)、營(yíng)銷、管理等網(wǎng)站化運(yùn)作于一體,具備承接各種規(guī)模類型的網(wǎng)站建設(shè)項(xiàng)目的能力。
1..Net開(kāi)源Json序列化工具Newtonsoft.Json中提供了解決序列化的循環(huán)引用問(wèn)題:
方式1:指定Json序列化配置為 ReferenceLoopHandling.Ignore
方式2:指定 JsonIgnore忽略 引用對(duì)象
實(shí)例1,解決MVC的Json序列化引用方法:
step1:在項(xiàng)目上添加引用 Newtonsoft.Json程序包,命令:Insert-Package Newtonsoft.Json
step2:在項(xiàng)目中添加一個(gè)類,繼承JsonResult,代碼如下:
////// 繼承JsonResut,重寫(xiě)序列化方式/// public class JsonNetResult : JsonResult {public JsonSerializerSettings Settings { get; private set; }public JsonNetResult() { Settings = new JsonSerializerSettings {//這句是解決問(wèn)題的關(guān)鍵,也就是json.net官方給出的解決配置選項(xiàng). ReferenceLoopHandling = ReferenceLoopHandling.Ignore }; }public override void ExecuteResult(ControllerContext context) {if (context == null)throw new ArgumentNullException("context");if (this.JsonRequestBehavior == JsonRequestBehavior.DenyGet && string.Equals(context.HttpContext.Request.HttpMethod, "GET", StringComparison.OrdinalIgnoreCase))throw new InvalidOperationException("JSON GET is not allowed"); HttpResponseBase response = context.HttpContext.Response; response.ContentType = string.IsNullOrEmpty(this.ContentType) ? "application/json" : this.ContentType;if (this.ContentEncoding != null) response.ContentEncoding = this.ContentEncoding;if (this.Data == null)return;var scriptSerializer = JsonSerializer.Create(this.Settings);using (var sw = new StringWriter()) { scriptSerializer.Serialize(sw, this.Data); response.Write(sw.ToString()); } } }
step3:在項(xiàng)目添加BaseController,重寫(xiě)Json()方法,代碼如下:
public class BaseController : Controller {public StudentContext _Context = new StudentContext();////// 重寫(xiě),Json方法,使之返回JsonNetResult類型/// protected override JsonResult Json(object data, string contentType, Encoding contentEncoding, JsonRequestBehavior behavior) {return new JsonNetResult { Data = data, ContentType = contentType, ContentEncoding = contentEncoding, JsonRequestBehavior = behavior }; } }
step4.向平時(shí)一樣使用就可以了
//獲取列表public JsonResult GetList() { Listlist = _Context.students.Where(q => q.sno == "103").ToList();//方法1return Json(list);//方法2//return new JsonNetResult() {// Data=list//}; }
獲取的結(jié)果,說(shuō)明,這種方式指定忽略循環(huán)引用,是在指定循環(huán)級(jí)數(shù)后忽略,返回的json數(shù)據(jù)中還是有部分循環(huán)的數(shù)據(jù)
解決EF Json序列化循環(huán)引用方法2,在指定的關(guān)聯(lián)對(duì)象上,添加JsonIgnore 方法注釋
[JsonIgnore]public virtual ICollectionscores { get; set; }
返回結(jié)果中,沒(méi)有關(guān)聯(lián)表數(shù)據(jù)
感謝各位的閱讀!看完上述內(nèi)容,你們對(duì)如何解決ASP.NET MVC 遇到JSON循環(huán)調(diào)用的問(wèn)題大概了解了嗎?希望文章內(nèi)容對(duì)大家有所幫助。如果想了解更多相關(guān)文章內(nèi)容,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。