【发布时间】: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