本文摘自PHP中文网,作者零下一度,侵删。
1..Net开源Json序列化工具Newtonsoft.Json中提供了解决序列化的循环引用问题:
方式1:指定Json序列化配置为 ReferenceLoopHandling.Ignore
方式2:指定 JsonIgnore忽略 引用对象
实例1,解决MVC的Json序列化引用方法:
step1:在项目上添加引用 Newtonsoft.Json程序包,命令:Insert-Package Newtonsoft.Json
step2:在项目中添加一个类,继承JsonResult,代码如下:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
public
JsonSerializerSettings Settings { get;
private
set; }
public
JsonNetResult()
{
Settings =
new
JsonSerializerSettings
{
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()方法,代码如下:
1
2
3
4
5
6
7
8
9
10
11
12
public
class
BaseController : Controller
{
public
StudentContext _Context =
new
StudentContext();
Encoding contentEncoding, JsonRequestBehavior behavior)
{
return
new
JsonNetResult
{
Data = data,
ContentType = contentType,
ContentEncoding = contentEncoding,
JsonRequestBehavior = behavior
};
}
}
step4.向平时一样使用就可以了
1
2
3
4
{
List<student> list = _Context.students.Where(q => q.sno ==
"103"
).ToList();
}
获取的结果,说明,这种方式指定忽略循环引用,是在指定循环级数后忽略,返回的json数据中还是有部分循环的数据
解决EF Json序列化循环引用方法2,在指定的关联对象上,添加JsonIgnore 方法注释
1
[JsonIgnore]
public
virtual ICollection<score> scores { get; set; }
返回结果中,没有关联表数据
文章转载自:
以上就是ASP.NET MVC 遇到JSON循环调用的问题应该怎么解决? 的详细内容!
相关阅读 >>
asp.net使用x509certificate2出现的一些问题的解决方法分享(图)
.net项目中上传大图片失败
asp.net mvc如何动态编译生成controller的方法示例详解
对asp.net中的mvc引擎开发插系统进行详解
c#实现json序列化删除null值的方法实例
asp.net+jquery如何实现省市二级联动功能的方法详解
防止sql注入的asp.net方法实例解析
asp.net简单的格式转换方法
asp.net core实例教程之异常处理与静态文件教程
asp.net core中间件设置教程(7)_实用技巧
更多相关阅读请进入《javascript 》频道 >>
¥125.8元 清华大学出版社
作者:[美]克里斯琴·内格尔(Christian Nagel)著。出版时间:2019年3月。
转载请注明出处:木庄网络博客 » ASP.NET MVC 遇到JSON循环调用的问题应该怎么解决?