赞
踩
.net core 3.1、.net core 3.0
json里中文字符被转换成 “\u20EE\u5BB1\u62WC\u6F0F\u1E8D\u6B6B\u72EE” 这种编码。
在Startup类中ConfigureServices方法添加以下代码:
public void ConfigureServices(IServiceCollection services)
{
services.AddControllersWithViews().AddJsonOptions(options =>
{
options.JsonSerializerOptions.Encoder = JavaScriptEncoder.Create(UnicodeRanges.All);
});
}
这是因为.net core不设置编码器默认将中文字符串转义,详细请查看官方解释
https://docs.microsoft.com/zh-cn/dotnet/standard/serialization/system-text-json-how-to#customize-character-encoding
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。