是否可以将表格数据分配给 HTML 中的表格标题?
我正在使用 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.
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.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论