溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

如何解決ASP.NET MVC 遇到JSON循環(huán)調(diào)用的問題

發(fā)布時間:2020-09-08 11:42:56 來源:億速云 閱讀:185 作者:小新 欄目:編程語言

如何解決ASP.NET MVC 遇到JSON循環(huán)調(diào)用的問題?這個問題可能是我們?nèi)粘W(xué)習(xí)或工作經(jīng)常見到的。希望通過這個問題能讓你收獲頗深。下面是小編給大家?guī)淼膮⒖純?nèi)容,讓我們一起來看看吧!

1..Net開源Json序列化工具Newtonsoft.Json中提供了解決序列化的循環(huán)引用問題:

方式1:指定Json序列化配置為 ReferenceLoopHandling.Ignore

方式2:指定 JsonIgnore忽略 引用對象

實(shí)例1,解決MVC的Json序列化引用方法:

step1:在項目上添加引用 Newtonsoft.Json程序包,命令:Insert-Package Newtonsoft.Json

step2:在項目中添加一個類,繼承JsonResult,代碼如下:

/// <summary>/// 繼承JsonResut,重寫序列化方式/// </summary>public class JsonNetResult : JsonResult
{public JsonSerializerSettings Settings { get; private set; }public JsonNetResult()
    {
        Settings = new JsonSerializerSettings
        {//這句是解決問題的關(guān)鍵,也就是json.net官方給出的解決配置選項.                 
            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:在項目添加BaseController,重寫Json()方法,代碼如下:

public class BaseController : Controller
{public StudentContext _Context = new StudentContext();/// <summary>/// 重寫,Json方法,使之返回JsonNetResult類型/// </summary>protected override JsonResult Json(object data, string contentType,
        Encoding contentEncoding, JsonRequestBehavior behavior)
    {return new JsonNetResult
        {
            Data = data,
            ContentType = contentType,
            ContentEncoding = contentEncoding,
            JsonRequestBehavior = behavior
        };
    }
}

step4.向平時一樣使用就可以了

//獲取列表public JsonResult GetList()
{
    List<student> list = _Context.students.Where(q => q.sno == "103").ToList();//方法1return Json(list);//方法2//return new JsonNetResult() {//    Data=list//};
}

獲取的結(jié)果,說明,這種方式指定忽略循環(huán)引用,是在指定循環(huán)級數(shù)后忽略,返回的json數(shù)據(jù)中還是有部分循環(huán)的數(shù)據(jù)

如何解決ASP.NET MVC 遇到JSON循環(huán)調(diào)用的問題

解決EF Json序列化循環(huán)引用方法2,在指定的關(guān)聯(lián)對象上,添加JsonIgnore 方法注釋

[JsonIgnore]public virtual ICollection<score> scores { get; set; }

返回結(jié)果中,沒有關(guān)聯(lián)表數(shù)據(jù)

如何解決ASP.NET MVC 遇到JSON循環(huán)調(diào)用的問題

感謝各位的閱讀!看完上述內(nèi)容,你們對如何解決ASP.NET MVC 遇到JSON循環(huán)調(diào)用的問題大概了解了嗎?希望文章內(nèi)容對大家有所幫助。如果想了解更多相關(guān)文章內(nèi)容,歡迎關(guān)注億速云行業(yè)資訊頻道。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI