MVC 6:如何使用RESX文件?

时间:2015-07-30 10:32:32

标签: asp.net-mvc asp.net-core asp.net-core-mvc

我正在尝试将现有的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的本地化故事已经完成,但是我找不到任何使用资源字符串的样本。

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

  

错误CS0246类型或命名空间名称'资源'无法找到   (您是否缺少using指令或程序集引用?)

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

编辑2:在实施穆罕默德的答案后,本地化位工作正常,但我现在陷入了一个新的错误。

一旦我加入

  "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;
        }
          ....

错误:

  

处理请求时发生未处理的异常。

     

InvalidOperationException:无法解析类型的服务   &#39; Microsoft.Framework.Runtime.IApplicationEnvironment&#39;在尝试时   激活   &#39; Microsoft.Framework.Localization.ResourceManagerStringLocalizerFactory&#39 ;.   Microsoft.Framework.DependencyInjection.ServiceLookup.Service.CreateCallSite(的ServiceProvider   提供者,ISet`1 callSiteChain)

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

编辑3:

任何仍在寻找解决方案的人。此时,您可以使用 Muhammad Rehan Saee 在答案中的代码来获取CSHTML中的本地化支持。然而,尚未完成在验证属性中启用本地化的故事(在编辑时:2015年9月8日) 请查看以下mvc的GITHUB站点上的问题:

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

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

  

将所有依赖关系作为beta7- *并清除所有内容   我的C:\ Users \ .dnx \ packages摆脱了错误。

我提出的问题详情:

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

编辑:25 / Dec / 2015

现在终于在MVC 6中工作了。

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

2 个答案:

答案 0 :(得分:4)

您可以查看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似乎用于从resx类型创建IStringLocalizer的实例。然后,您可以使用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);
}

最后,您可以将IStringLocalizer注入您的控制器(请注意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();
    }
}

答案 1 :(得分:3)

mvc 6.0.0-rc1-final中的内容已经改变。经过许多其他论坛后,如果有人计划使用本地化功能的最新变化,则以下配置将有效。

在startup.cs configure

public void ConfigureServices(IServiceCollection services)
    {           
        services.AddMvc();           
        services.AddMvc().AddViewLocalization().AddDataAnnotationsLocalization();
        services.AddSingleton<IStringLocalizerFactory, CustomStringLocalizerFactory>();
    }

    public void Configure(IApplicationBuilder app, IHostingEnvironment env, ILoggerFactory loggerFactory)
    {           
        var requestLocalizationOptions = new RequestLocalizationOptions
        {                
            SupportedCultures = new List<CultureInfo>{
                new CultureInfo("en-US"),    
                new CultureInfo("fr-CH")
            },
            SupportedUICultures = new List<CultureInfo>
            {
                new CultureInfo("en-US"),                    
                new CultureInfo("fr-CH")                    
            }
        };
        app.UseRequestLocalization(requestLocalizationOptions, new RequestCulture(new CultureInfo("en-US")));           
    }

您可以在控制器中开始使用IHtmlLocalizer。

您可以使用查询字符串http://localhost:5000/Home/Contact?culture=fr-CH进行测试,或通过在&#34;语言和输入设置&#34;

下添加首选语言来更改Chrome中的文化