如何本地化数据类型消息



如何在MVC4中本地化数据类型消息"字段Date必须是日期。"

<input data-val="true" data-val-date="The field Date be a date." id="Date" name="Date"  value="" >
我使用

:

public class LocalizedDataTypeAttributeAdapter : DataAnnotationsModelValidator<DataTypeAttribute>
        {
            public LocalizedDataTypeAttributeAdapter(ModelMetadata metadata, ControllerContext context, DataTypeAttribute attribute) : base(metadata, con
text, attribute)
        {
            attribute.ErrorMessageResourceType = typeof(Localization.Global);
            attribute.ErrorMessageResourceName = "PropertyDataFormat";
        }
    }

也LocalizedDataTypeAttributeAdapter注册在Global.asax

DataAnnotationsModelValidatorProvider.RegisterAdapter(typeof(DataTypeAttribute), typeof(LocalizedDataTypeAttributeAdapter));

您需要重写ClientDataTypeModelValidatorProvider

拿去https://github.com/mono/aspnetwebstack/blob/master/src/System.Web.Mvc/ClientDataTypeModelValidatorProvider.cs

和更改

private static string GetUserResourceString(ControllerContext controllerContext, string resourceName)
        {
            string result = null;
            if (!String.IsNullOrEmpty(ResourceClassKey) && (controllerContext != null) && (controllerContext.HttpContext != null))
            {
                //result = controllerContext.HttpContext.GetGlobalResourceObject(ResourceClassKey, resourceName, CultureInfo.CurrentUICulture) as string;
                result = GlobalRes.ResourceManager.GetString(resourceName);
            }
            return result;
        }

然后将其设置为Global.asax:

中的Application_Start中的DefaultModelBinder
protected void Application_Start()
{
   var existingProvider = ModelValidatorProviders.Providers.Single(x => x is ClientDataTypeModelValidatorProvider);
   ModelValidatorProviders.Providers.Remove(existingProvider);
   ModelValidatorProviders.Providers.Add(new myClientDataTypeModelValidatorProvider()); //!!
   myClientDataTypeModelValidatorProvider.ResourceClassKey = typeof(GlobalRes).Name;
   DefaultModelBinder.ResourceClassKey = typeof(GlobalRes).Name;
}

相关内容

最新更新