3

在 C# 中,属性参数需要是常量表达式、typeof 或数组创建表达式。

各种库,例如 Castle 验证器,允许指定将看似本地化的错误消息传递给属性构造函数:

//this works
[ValidateNonEmpty("Can not be empty")]

//this does not compile
[ValidateNonEmpty(Resources.NonEmptyValidationMessage)]

有什么办法可以解决这个问题并本地化这些论点?

如果在使用 Castle Validator 时没有解决此问题的方法,是否有类似于 Castle Validator 的验证库允许验证消息的本地化?

编辑:我发现数据注释验证库如何解决这个问题。非常优雅的解决方案: http: //haacked.com/archive/2009/12/07/localizing-aspnetmvc-validation.aspx

4

2 回答 2

4

我们遇到了类似的问题,尽管 Castle 没有。我们使用的解决方案是简单地定义一个从另一个属性派生的新属性,并使用常量字符串作为对资源管理器的查找,如果没有找到则回退到键字符串本身。

[AttributeUsage(AttributeTargets.Class
  | AttributeTargets.Method
  | AttributeTargets.Property
  | AttributeTargets.Event)]
public class LocalizedIdentifierAttribute : ... {
  public LocalizedIdentifierAttribute(Type provider, string key)
    : base(...) {
    foreach (PropertyInfo p in provider.GetProperties(
      BindingFlags.Static | BindingFlags.NonPublic)) {
      if (p.PropertyType == typeof(System.Resources.ResourceManager)) {
        ResourceManager m = (ResourceManager) p.GetValue(null, null);

        // We found the key; use the value.
        return m.GetString(key);
      }
    }

    // We didn't find the key; use the key as the value.
    return key;
  }
}

用法类似于:

[LocalizedIdentifierAttribute(typeof(Resource), "Entities.FruitBasket")]
class FruitBasket {
  // ...
}

然后,每个特定于语言环境的资源文件可以根据需要定义自己的Entities.FruitBasket条目。

于 2010-01-23T14:43:54.700 回答
1

它开箱即用:

    [ValidateNonEmpty(
        FriendlyNameKey = "CorrectlyLocalized.Description",
        ErrorMessageKey = "CorrectlyLocalized.DescriptionValidateNonEmpty",
        ResourceType = typeof (Messages)
        )]
    public string Description { get; set; }
于 2010-01-23T15:07:28.757 回答