如果 MVC 视图中的 else 条件

If else condition in MVC view

提问人:bootsy 提问时间:7/18/2019 更新时间:7/19/2019 访问量:3348

问:

我正在尝试循环通过 if else 条件,如果它们是最新的,则显示项目,如果不是,则显示没有项目的消息。我遇到的问题是无论如何,消息都会不断显示。我做错了什么?

我尝试将消息完全放在循环之外,并尝试了else if(iscurrent=false),并且在这两种情况下消息仍然显示。

   <div class="col-md-6">
    <ul>
        @foreach (var item in Model.Items)
        {
            if (item.IsCurrent == true)
            {
                <li>
                    @item.Id
                </li>
            }
            else if (item.IsCurrent == false)
            { 
                @: There is not a current Item at this time. Do you want 
                to
                <a asp-area="Admin" asp-controller="Item" asp- 
            action="CreateItem"> add a Item?</a>
            }
        }




    </ul>

  </div>

我希望只显示设置为 IsCurrent 的项目,当没有项目时,仅显示消息。

ASP.NET-MVC视图模型

评论

0赞 bootsy 7/18/2019
任何这方面的帮助将不胜感激。

答:

0赞 KevinLamb 7/19/2019 #1

我相信这会更接近你想要的:

<div class="col-md-6">
        <ul>
            @if (Model.Items.Any(x => x.IsCurrent))
            {
                foreach (var item in Model.Items)
                {
                    if (item.IsCurrent)
                    {
                        <li>
                            @item.Id
                        </li>
                    }
                }
            }
            else
            {
                @:There is not a current Item at this time. Do you want to
                <a asp-area="Admin" asp-controller="Item" asp-action="CreateItem">add a Item?</a>
            }
       </ul>
</div>

首先,它会检查当前正在使用 的任何项目,然后遍历并显示当前 ID。否则,将显示“无当前项目”消息。.Any()Model.Items