【问题标题】:How to get the values of the resources? (More than 1 languages)如何获得资源的价值? (超过 1 种语言)
【发布时间】:2021-06-02 18:30:51
【问题描述】:

我只需要资源的值。我尝试过这种方式。因为我有这个代码。但是为什么property的属性总是null呢?我认为属性是 DisplayName。

我做错了什么?有没有更好的方法来获取资源的价值?不使用模型? (它是电子邮件内容的一部分。)

在控制器中

    private string DisplayName(string value)
    {
      try
      {
         PropertyInfo property = typeof(FormModel).GetProperty(value);
         var attribute = property.GetCustomAttribute(typeof(DisplayNameAttribute), true).Cast<DisplayNameAttribute>().FirstOrDefault();
    
         if (attribute == null)
           return value;
        else
           return attribute.DisplayName;
      }
      catch (Exception ex)
      {
          return value;
       }
    }
    
    private string GetHtmlContent(Dto dto)
    {
        string htmlContent = string.Empty;
    
        htmlContent += $"<h4>{DisplayName("PersonalData")</h4>";
        enz...
    }

模型:

public class FormModel
{
    [Display(Name = "PersonalData", ResourceType = typeof(StringResource))]
    public string PersonalData { get; set; }

    [Display(Name = "Name", ResourceType = typeof(StringResource))]
    public string Name { get; set; }

    [Display(Name = "Phone", ResourceType = typeof(StringResource))]
    public string Phone { get; set; }

    [Display(Name = "EMail", ResourceType = typeof(StringResource))]
    public string EMail { get; set; }

【问题讨论】:

    标签: c# model-view-controller resources propertyinfo


    【解决方案1】:

    解决此异常的简单方法也许将DisplayNameAttribute更改为DisplayAttribute

    var attribute = property.GetCustomAttribute(typeof(DisplayAttribute), true).Cast<DisplayAttribute>().FirstOrDefault();
    

    但这不是制作多语言网站的好方法

    this link

    【讨论】:

      猜你喜欢
      • 2016-12-04
      • 1970-01-01
      • 2019-03-15
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2021-11-09
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多