欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

详解ASP.NET Core 中的多语言支持(Localization)

程序员文章站 2022-07-03 19:22:43
首先在 startup 的 configureservices 中添加 addlocalization 与 addviewlocalization 以及配置 request...

首先在 startup 的 configureservices 中添加 addlocalization 与 addviewlocalization 以及配置 requestlocalizationoptions (这里假设使用英文与中文):

public void configureservices(iservicecollection services)
{
  services.addlocalization(options => options.resourcespath = "resources");

  services.addmvc()
    .addviewlocalization(languageviewlocationexpanderformat.suffix);

  services.configure<requestlocalizationoptions>(
    opts =>
    {
      var supportedcultures = new list<cultureinfo>
      {
        new cultureinfo("en-us"),
        new cultureinfo("zh-cn")
      };
      opts.supportedcultures = supportedcultures;
      opts.supporteduicultures = supportedcultures;
    });
}

在 startup 的 configure() 方法中应用 requestlocalizationoptions :

var requestlocalizationoptions = app.applicationservices.getservice<ioptions<requestlocalizationoptions>>().value;
app.userequestlocalization(requestlocalizationoptions);

然后在 _layout.cshtml 视图中通过 iviewlocalizer 接口以多语言的方式显示页面标题的后缀:

@using microsoft.aspnetcore.mvc.localization
@inject iviewlocalizer localizer
<!doctype html>
<html>
<head>
  <title>@viewdata["title"] - @localizer["sitetitle"]</title>
</head>
<body>
</body>
</html>

接着在 asp.net core web 项目中创建 resources 文件夹,在其中分别添加 views.shared._layout.en-us.resx 与 views.shared._layout.zh-cn.resx 文件, views.shared._layout.resx 文件,并添加 "sitetitle" 所对应的语句文字:

1)views.shared._layout.en-us.resx

详解ASP.NET Core 中的多语言支持(Localization)

2)views.shared._layout.zh-cn.resx

详解ASP.NET Core 中的多语言支持(Localization)

这时运行 asp.net core 站点,就会根据浏览器的语言设置(accept-language header)、或者 culture 查询参数、或者 .aspnetcore.culture cookie 值显示对应语言的文字:

详解ASP.NET Core 中的多语言支持(Localization)

详解ASP.NET Core 中的多语言支持(Localization)

需要注意的地方:千万不要添加不带语言名称的 views.shared._layout.en-us.resx ,不然添加代码语言名称的 .resx 文件时会遇到  "custom tool resxfilecodegenerator failed to produce an output for input file ... but did not log a specific error." 问。

一定要看的参考文档:globalization and localization 

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。