gpt4 book ai didi

asp.net-mvc - MVC 6 : how to use RESX files?

转载 作者:行者123 更新时间:2023-12-02 02:33:21 27 4
gpt4 key购买 nike

我正在尝试将现有的 ASP.NET MVC 5 项目迁移到 MVC 6 vNext 项目,虽然我已经能够解决并解决大多数问题,但我似乎找不到任何有关如何使用 RESX 的文档MVC 6 中本地化的资源文件

我的 ViewModel 正在使用类似

的语句
 [Required(ErrorMessageResourceType = typeof(Resources.MyProj.Messages), ErrorMessageResourceName = "FieldRequired")]

只要正确包含 RESX 并且正确设置访问修饰符,这在 MVC 5 中就可以正常工作,但它似乎在 vNext 项目中不起作用有谁知道如何在 MVC 6 vNext 项目中使用 RESX?

我在这里和 GIT 中心网站上看到了一些帖子,其中说 ASP.NET 5/MVC 6 的本地化故事已经完成,但我找不到任何使用资源字符串的像样示例。

使用上面的代码给我一个错误

Error CS0246 The type or namespace name 'Resources' could not be found (are you missing a using directive or an assembly reference?)

编辑:更改文本以澄清我正在寻找 vNext (MVC 6) 项目中的本地化实现,我能够使其在 MVC 5 中工作。

编辑 2:在实现 Mohammed 的答案后,本地化位开始工作,但我现在遇到了一个新错误。

一旦我包含

  "Microsoft.AspNet.Localization": "1.0.0-beta7-10364",
"Microsoft.Framework.Localization": "1.0.0-beta7-10364",

打包并在Startup.cs的ConfigureServices中添加以下行

   services.AddMvcLocalization();

执行以下代码时出现新错误。

  public class HomeController : Controller
{
private readonly IHtmlLocalizer _localizer;

public HomeController(IHtmlLocalizer<HomeController> localizer)
{
_localizer = localizer;
}
....

错误:

An unhandled exception occurred while processing the request.

InvalidOperationException: Unable to resolve service for type 'Microsoft.Framework.Runtime.IApplicationEnvironment' while attempting to activate 'Microsoft.Framework.Localization.ResourceManagerStringLocalizerFactory'. Microsoft.Framework.DependencyInjection.ServiceLookup.Service.CreateCallSite(ServiceProvider provider, ISet`1 callSiteChain)

无法弄清楚我是否缺少依赖项或代码中存在问题

编辑3:

对于仍在寻找解决方案的任何人。此时,您可以使用 Muhammad Rehan Saee 的答案中的代码在 CSHTML 中获得本地化支持。然而,在验证属性中启用本地化的故事尚未完成(在本次编辑时:08/Sep/2015)看看 GITHUB 网站上关于 mvc 的问题:

https://github.com/aspnet/Mvc/issues/2766#issuecomment-137192942

PS:为了修复 InvalidOperationException,我执行了以下操作

Taking all dependencies as the beta7-* and clearing all the contents of my C:\Users\.dnx\packages got rid of the error.

我提出的问题的详细信息:

https://github.com/aspnet/Mvc/issues/2893#issuecomment-127164729

编辑:2015 年 12 月 25 日

现在终于可以在 MVC 6 中使用了。

在这里写了一篇简短的博客文章:http://pratikvasani.github.io/archive/2015/12/25/MVC-6-localization-how-to/

最佳答案

您可以查看 ASP.NET MVC GitHub 项目 here 上的完整示例。 。在撰写本文时,这都是非常新的代码,可能会发生变化。您需要将以下内容添加到启动中:

public class Startup
{
// Set up application services
public void ConfigureServices(IServiceCollection services)
{
// Add MVC services to the services container
services.AddMvc();
services.AddMvcLocalization();

// Adding TestStringLocalizerFactory since ResourceStringLocalizerFactory uses ResourceManager. DNX does
// not support getting non-enu resources from ResourceManager yet.
services.AddSingleton<IStringLocalizerFactory, TestStringLocalizerFactory>();
}

public void Configure(IApplicationBuilder app)
{
app.UseCultureReplacer();

app.UseRequestLocalization();

// Add MVC to the request pipeline
app.UseMvcWithDefaultRoute();
}
}

IStringLocalizerFactory似乎用于创建 IStringLocalizer 的实例来自 resx 类型。然后您可以使用IStringLocalizer获取本地化字符串。这是完整的界面( LocalizedString 只是一个名称值对):

/// <summary>
/// Represents a service that provides localized strings.
/// </summary>
public interface IStringLocalizer
{
/// <summary>
/// Gets the string resource with the given name.
/// </summary>
/// <param name="name">The name of the string resource.</param>
/// <returns>The string resource as a <see cref="LocalizedString"/>.</returns>
LocalizedString this[string name] { get; }

/// <summary>
/// Gets the string resource with the given name and formatted with the supplied arguments.
/// </summary>
/// <param name="name">The name of the string resource.</param>
/// <param name="arguments">The values to format the string with.</param>
/// <returns>The formatted string resource as a <see cref="LocalizedString"/>.</returns>
LocalizedString this[string name, params object[] arguments] { get; }

/// <summary>
/// Gets all string resources.
/// </summary>
/// <param name="includeAncestorCultures">
/// A <see cref="System.Boolean"/> indicating whether to include
/// strings from ancestor cultures.
/// </param>
/// <returns>The strings.</returns>
IEnumerable<LocalizedString> GetAllStrings(bool includeAncestorCultures);

/// <summary>
/// Creates a new <see cref="ResourceManagerStringLocalizer"/> for a specific <see cref="CultureInfo"/>.
/// </summary>
/// <param name="culture">The <see cref="CultureInfo"/> to use.</param>
/// <returns>A culture-specific <see cref="IStringLocalizer"/>.</returns>
IStringLocalizer WithCulture(CultureInfo culture);
}

最后你可以注入(inject)IStringLocalizer像这样进入你的 Controller (注意 IHtmlLocalizer<HomeController> 继承自 IStringLocalizer ):

public class HomeController : Controller
{
private readonly IHtmlLocalizer _localizer;

public HomeController(IHtmlLocalizer<HomeController> localizer)
{
_localizer = localizer;
}

public IActionResult Index()
{
return View();
}

public IActionResult Locpage()
{
ViewData["Message"] = _localizer["Learn More"];
return View();
}
}

关于asp.net-mvc - MVC 6 : how to use RESX files?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31721395/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com