我在MVC视图中有这段代码可以工作,但它接口像很多代码来实现这个简单的事情。有什么方法可以提高效率吗?
@if (string.IsNullOrEmpty(ViewBag.Name))
{
@:
}
else
{
@:ViewBag.Name
}
答案 0 :(得分:17)
@(ViewBag.Name ?? Html.Raw(" "))
答案 1 :(得分:5)
任何提高效率的方法吗?
是的,请使用视图模型并删除ViewBag
:
public string FormattedName
{
get { return string.IsNullOrEmpty(this.Name) ? " " : this.Name; }
}
然后在你的强类型视图中:
@Html.DisplayFor(x => x.FormattedName)
或者如果您愿意:
@Model.FormattedName
另一种可能性是编写自定义帮助程序:
public static class HtmlExtensions
{
public static IHtmlString Format(this HtmlHelper html, string data)
{
if (string.IsNullOrEmpty(data))
{
return new HtmlString(" ");
}
return html.Encode(name);
}
}
然后在你看来:
@Html.Format(Model.Name)
或者如果您需要保留ViewCrap,则必须使用强制转换(抱歉,.NET不支持动态参数上的扩展方法分派):
@Html.Format((string)ViewBag.Name)