问题描述
我只需要资源的值。我是这样试的。因为我有这个代码。但是为什么属性的属性总是为空呢?我认为该属性是 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; }
解决方法
暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!
如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。
小编邮箱:dio#foxmail.com (将#修改为@)