我正在使用带有MVC 3的Razor视图引擎,我试图使偶数行和奇数行在表中具有不同的类。
到目前为止,我已经有了这个
@{ var odd = true; }
@foreach(var userLot in Model) {
if (!odd) {
<tr id="lot@userLot.Id" class="even">
else
<tr id="lot@userLot.Id" class="odd">
}
<td>@userLot.Id</td>
<td>@userLot.Description</td>
<td>@userLot.Carat</td>
<td class="averageBid">@userLot.AverageBid</td>
<td class="rank">@userLot.Rank</td>
<td class="currentBid">@userLot.CurrentBid</td>
<td style="width: 200px; height: 30px;" class="tdWithBidInput"><input type="text" style="display: none" /></td>
</tr>
@{ odd = !odd; }
}
这给我带来了无穷无尽的麻烦,愚蠢的视图引擎无法弄清楚什么是标记,什么是代码。我已经尝试在文本指令中包装tr开口标记,但是然后愚蠢的视图引擎呻吟着关闭tr标签。如果我然后将结束tr标记包装在text指令中,那么愚蠢的视图引擎就会怀疑text指令没有开始标记。
要明确,这个
<text></ tr></text>
给出错误,文本标记没有匹配的开始标记。可爱。
如何编写此代码以便Razor不会出错?
请不要推荐JavaScript解决方案,我试图解决Razor问题。
答案 0 :(得分:28)
这个怎么样:
@{ var odd = true; }
@foreach(var userLot in Model) {
<tr id="lot@(userLot.Id)" class="@(odd ? "odd": "even")">
<td>@userLot.Id</td>
<td>@userLot.Description</td>
<td>@userLot.Carat</td>
<td class="averageBid">@userLot.AverageBid</td>
<td class="rank">@userLot.Rank</td>
<td class="currentBid">@userLot.CurrentBid</td>
<td style="width: 200px; height: 30px;" class="tdWithBidInput"><input type="text" style="display: none" /></td>
</tr>
odd = !odd;
}
@( ... )
是一个有效且非常有用的陈述。