提问人:user1531040 提问时间:6/3/2021 更新时间:6/8/2021 访问量:65
如何获取资源的价值?(超过 1 种语言)
How to get the values of the resources? (More than 1 languages)
问:
我只需要资源的值。我用这种方式试过了。因为我有这个代码。但是为什么属性的属性总是为 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; }
答:
2赞
Nima Talebi
6/3/2021
#1
解决这个问题的简单方法也许改成DisplayNameAttribute
DisplayAttribute
var attribute = property.GetCustomAttribute(typeof(DisplayAttribute), true).Cast<DisplayAttribute>().FirstOrDefault();
但这并不是制作多语言网站的好方法
请参阅此链接
评论