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

mvc EF框架中,加载外键对象序列化对象时报错 序列化类型为XX的对象时检测到循环引用

时间:2018-05-05 12:40:29      阅读:447      评论:0      收藏:0      [点我收藏+]

标签:new   lag   list   service   输入   hand   response   text   title   

Newtonsoft.Json.dll 或者通过-》工具-》库程序包管理工具-》NuGet管理包-》联机 输入Newtonsoft或者json.net

Newtonsoft.Json是可以的:

 

context.Response.ContentType = "text/plain";
BooksService service = new BooksService();
List<Books> list=service.GetAll().Take(5).ToList();
JsonSerializerSettings setting = new JsonSerializerSettings()
{
ReferenceLoopHandling = ReferenceLoopHandling.Ignore
};

strintret = JsonConvert.SerializeObject(list, setting);
context.Response.Write(ret);

 

 

easyui 代码

 

 

$(‘#BooKlist‘).datagrid({
url: ‘BookHandler.ashx?flag=GetBookList‘,
pagination: true,
pageList: [5, 15, 20, 25],
pageSize: 5,
columns: [[
{ field: ‘Title‘, title: ‘书名‘, width: 120 },
{ field: ‘Author‘, title: ‘作者‘, width: 120 },
{ field: ‘ISBN‘, title: ‘ISBN‘, width: 120 },
{
field: ‘Publishersid‘, title: ‘出版社‘, width: 120,
formatter: function (value, row, index) {
return row.Publishers.Name;
}

},
{
field: ‘CategoryId‘, title: ‘书类别‘, width: 120,
formatter: function (value, row, index) {
return row.Categories.Name;
}
}

]]
});

mvc EF框架中,加载外键对象序列化对象时报错 序列化类型为XX的对象时检测到循环引用

标签:new   lag   list   service   输入   hand   response   text   title   

原文地址:https://www.cnblogs.com/wlzhang/p/8994243.html

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