ASP.NET Core MVC的Razor视图渲染中文乱码的问题
一、ASP.NET Core MVC的Razor视图渲染中文乱码的问题
Asp.Net Core 默认视图渲染,默认中文字符使用了Unicode编码的中文字,直接输出。
解决方案1:
启动服务配置ConfigureServices,增加代码如下:
public class Program { public static void Main(string[] args) { var builder = WebApplication.CreateBuilder(args); // Add services to the container. builder.Services.AddRazorPages(); // 添加数据库上下文 builder.Services.AddDbContext<MyDbContext>( options => options.UseMySql( builder.Configuration.GetConnectionString("MyDbConnection"), new MySqlServerVersion(new Version(5, 7)) ) ); //开启日志 builder.Logging.AddLog4Net(); //配置视图渲染支持中文 builder.Services.Configure<WebEncoderOptions>(options => options.TextEncoderSettings = new TextEncoderSettings(UnicodeRanges.All)); var app = builder.Build();
============ 欢迎各位老板打赏~ ===========
与本文相关的文章
- · 执行sql脚本时中文乱码
- · The instance of entity type ‘Customer’ cannot be tracked because another instance with the same key value for {‘Id’} is already being tracked.
- · .NET8实时更新nginx ip地址归属地
- · 解决.NET Blazor子组件不刷新问题
- · .NET8如何在普通类库中引用 Microsoft.AspNetCore
- · .NET8 Mysql SSL error
- · .NETCORE 依赖注入服务生命周期
- · asp.net zero改mysql
- · .NET5面试汇总
- · .Net连接Mysql数据库的Convert Zero Datetime日期问题
- · vue使用element-ui中的Message 、MessageBox 、Notification
- · Asp.Net Core Filter 深入浅出的那些事-AOP