当支持模型的值为null或为空时,我需要通过
插入@HTML.DisplayFor
。
我尝试过使用数据注释
[DisplayFormat(ConvertEmptyStringToNull = true, NullDisplayText =" " ]
public string MiddleName { get; set; }
确实可以在我预期的位置贴上“”,但我需要在那里放置一个不间断的空间。
答案 0 :(得分:1)
尝试类似:
var space = " ";
[DisplayFormat(ConvertEmptyStringToNull = true, NullDisplayText ="@space" ]
public string MiddleName { get; set; }
将" "
放在该位置的问题是它将被读作c#代码。相反,您希望在运行时将其作为HTML代码读取,并且上述内容应该实现此目的。
答案 1 :(得分:1)
这对我有用:
NullDisplayText = @" ", HtmlEncode = false
答案 2 :(得分:0)
我通过编写帮助程序而不是使用@Html.DisplayFor
解决了这个问题。就是这样。
@helper NonBreakingSpacesIfNullOrEmpty(string field, int spaces)
{
if (String.IsNullOrEmpty(field))
{
@(new HtmlString(String.Concat(Enumerable.Repeat(" ", spaces))))
}
else
{
@field
}
}
您的代码会这样称呼它。
@FooHelper.NonBreakingSpacesIfNullOrEmpty(Model.MiddleName, 1)
如果您不需要重复功能,请删除spaces
参数和相关逻辑。