码迷,mamicode.com
首页 > Web开发 > 详细

[MVC_Json序列化]MVC之Json序列化循环引用

时间:2015-05-13 16:36:31      阅读:136      评论:0      收藏:0      [点我收藏+]

标签:

在做MVC项目时,难免会遇到Json序列化循环引用的问题,大致错误如下

错误1:序列化类型为“。。。”的对象时检测到循环引用。

错误2:Self referencing loop detected for property ‘。。。‘ with type ‘。。。‘. Path ‘[0].x[0]‘.

以上错误是因为数据库表关系引起的,比如一对一或多对多,如图:

技术分享

EF里面是这样的,如图:

技术分享

 

解决方法:

步骤1:

-引用JSON.NET

技术分享

 

步骤2:

-引用Newtonsoft.Json

技术分享

 

步骤3:

-Json序列化

public JsonResult Contact()
{
            
      var result = from score in context.Prarent
                     select score;
      string json = JsonConvert.SerializeObject(result, new JsonSerializerSettings
      {
            ReferenceLoopHandling = ReferenceLoopHandling.Ignore
      });
      return Json(new { data = json }, JsonRequestBehavior.AllowGet);
}

返回的Json结果为:

技术分享

[MVC_Json序列化]MVC之Json序列化循环引用

标签:

原文地址:http://www.cnblogs.com/zhenhong/p/4500515.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!