下面的代码似乎并不干净。 有任何改进代码的建议吗?
<li @if(ViewData["pagename"].ToString()=="Business details"){ <text>class="active" </text> } >
<a @if(ViewData["pagename"].ToString()=="Business details"){ <text>style="color: white; background-color: #08C; border: 1px solid #08C;" </text> }
href="@Url.Action("BusinessDetails", "Business")">Business Details</a>
</li>
<li @if (ViewData["pagename"].ToString() == "Booking policies"){ <text>class="active"</text> }>
<a @if (ViewData["pagename"].ToString() == "Booking policies")
{ <text>style="color: white; background-color: #08C; border: 1px solid #08C;" </text> }
href="@Url.Action("BookingPolicies", "Business")">Booking policies</a>
</li>
答案 0 :(得分:115)
MVC内置条件属性......
<div @{if (myClass != null) { <text>class="@myClass"</text> } }>Content</div>
<div class="@myClass">Content</div>
如果@myClass为null,则根本不会使用该属性...
我知道这可能无法解决您当前的问题,但值得注意的是!
http://weblogs.asp.net/jgalloway/archive/2012/02/16/asp-net-4-beta-released.aspx
答案 1 :(得分:68)
<li class="@(ViewBag.pagename == "Business details" ? "active" : null)">
您应该使用单独的类名替换内联style="..."
,并在那里使用相同的语法。
但是,制作一个单独的HTML帮助扩展方法更为清晰,该方法采用页面和操作名称并一般生成HTML。
答案 2 :(得分:19)
我使用一个小辅助方法,如果值非空,则有条件地添加属性,如果定义,则当布尔函数表达式求值为true
时:
public static MvcHtmlString Attr(this HtmlHelper helper, string name, string value, Func<bool> condition = null)
{
if (string.IsNullOrEmpty(name) || string.IsNullOrEmpty(value))
{
return MvcHtmlString.Empty;
}
var render = condition != null ? condition() : true;
return render ?
new MvcHtmlString(string.Format("{0}=\"{1}\"", name, HttpUtility.HtmlAttributeEncode(value))) :
MvcHtmlString.Empty;
}
一旦定义,我可以在我的Razor视图中使用此方法:
<li @(Html.Attr("class", "new", () => example.isNew))>
...
</li>
如果<li class="new">...</li>
,上述代码将呈现example.isNew == true
,否则将省略整个class
属性。
答案 3 :(得分:3)
在MVC4中
<!DOCTYPE html>
<html>
<head>
</head>
<body>
@{
string css = "myDiv";
}
<div class='@css'></div>
</body>
</html>
或
<!DOCTYPE html>
<html>
<head>
</head>
<body>
@{
string css = "class=myDiv";
}
<div @css></div>
</body>
</html>
更多内容如下:http://evolpin.wordpress.com/2012/05/20/mvc-4-code-enhancements/
答案 4 :(得分:0)
采用TagWrap扩展方法的方法。您问题的代码如下:
@using (Html.TagWrap("li", condition ? new { @class = "active" } : null))
{
var anchorAttrs = new Dictionary<string, object> { { "href", Url.Action("BusinessDetails", "Business") } };
if(condition)
{
anchorAttrs["style"] = "color: white; background-color: #08C; border: 1px solid #08C;";
}
using (Html.TagWrap("a", anchorAttrs))
{
<text>Business Details</text>
}
}
TagWrap扩展方法
使用Microsoft.AspNetCore.Mvc.ViewFeatures;
public static IDisposable TagWrap(this IHtmlHelper htmlHelper, string tagName, object data)
{
return htmlHelper.TagWrap(tagName, HtmlHelper.AnonymousObjectToHtmlAttributes(data));
}
public static IDisposable TagWrap(this IHtmlHelper htmlHelper, string tagName, IDictionary<string, object> data)
{
var tag = new TagBuilder(tagName);
tag.MergeAttributes(data);
htmlHelper.ViewContext.Writer.Write(tag.RenderStartTag());
return new DisposableAction(() =>
htmlHelper.ViewContext.Writer.Write(tag.RenderEndTag()));
}
用于在Dispose上呈现结束标记的Helper类
public class DisposableAction : IDisposable
{
private readonly Action DisposeAction;
public DisposableAction(Action action)
{
DisposeAction = action;
}
public void Dispose()
{
DisposeAction();
}
}
答案 5 :(得分:0)
基于除霜,在这里回答一个适应问题,取object
代替string
:
public static MvcHtmlString ConditionalAttr(this HtmlHelper helper, string attributeName, object value, Func<bool> condition)
{
if (string.IsNullOrEmpty(attributeName) || value == null)
{
return MvcHtmlString.Empty;
}
var render = condition != null ? condition() : true;
return render ?
new MvcHtmlString($"{attributeName}=\"{HttpUtility.HtmlAttributeEncode(value.ToString())}\"") :
MvcHtmlString.Empty;
}
这样,您不必在传递其他数据类型之前就将其转换为字符串,从而节省了.ToString()
。
有一个区别:传递空字符串仍会呈现。
例如:
@Html.ConditionalAttr("data-foo", "", () => Model.IsFooNeeded)
// Ouput:
data-foo=""
答案 6 :(得分:0)
@{ var classAttr= needClass ? "class=\"class-name\"" : "" }
然后在HTML
中<li @Html.Raw(classAttr) >