gpt4 book ai didi

asp.net-mvc-3 - 在 razor 中使用 @if 时出错

转载 作者:行者123 更新时间:2023-12-02 05:35:13 28 4
gpt4 key购买 nike

当我尝试像这样在 razor 中使用 if 子句时出现错误:

“@”字符后出现意外的“if”关键字。

@foreach (var item in Model) {
@if (item.Country != "No Country")
{
<li>@Html.ActionLink(item.CountryWithCount, "IndexByProv", "EventInfo", new { country = item.Country }, null)</li>

为什么会出现这个错误?

最佳答案

你不需要 @ 因为你已经在代码块中了。

@foreach (var item in Model) {
if (item.Country != "No Country")
{
<li>something</li>
}
}

关于asp.net-mvc-3 - 在 razor 中使用 @if 时出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11799533/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com