是否可以将表格数据分配给 HTML 中的表格标题?

发布于 2025-01-11 13:34:39 字数 941 浏览 0 评论 0原文

我正在使用 C# ASP.NET atm 中的表显示来自 API 的数据。我有一个问题,如果数据不退出/ null,我什么都不显示

                @foreach(var venue in Model.Venues)
                {
                    if(venue.id != location.venueId)
                    {
                        continue;
                    }
                    else
                    {
                        <td>@venue.venueName</td>
                    }
                }

如果我在 if 语句中添加 (Null) ,其中venue.id != location。场地 ID。我得到这样的东西......我的桌子不断扩大,直到它结束或找到东西。如果数据存在的话,它就可以完美地工作。

输入图片此处描述

如果我不添加任何内容作为数据显示,我会得到类似这样的内容...一个在各个方面都有意义的空数据。但我想知道是否可以将表数据分配给表头,以便在数据确实存在时保留空白位置。

输入图片此处描述

I'm working with tables in C# ASP.NET atm displaying data from an API. I have a problem where if a data doesn't exit / null I display nothing

                @foreach(var venue in Model.Venues)
                {
                    if(venue.id != location.venueId)
                    {
                        continue;
                    }
                    else
                    {
                        <td>@venue.venueName</td>
                    }
                }

If I add (<td>Null</td>) inside the if statement where venue.id != location.venueId. I get something like this... Where my table constantly expands until it ends or it finds something. It works perfectly if the data is there.

enter image description here

If I don't add anything to display as data I get something like this... An empty data which makes sense in every way. But I'm wondering if it is possible to assign table data to a table header so it keeps the empty spot for when the data does exist.

enter image description here

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文