我有一个带有 bootstrap 的 Nodejs 应用程序。引导卡将连续放置 3 个,列中的数据数量与引导卡的数量相同。我尝试使用两个 for 循环,但数据在每一行中重复。我不知道如何实现这一点。
我的EJS代码是
<% for(var i=0; i<details.length; i++) { %>
<div class="row">
<% for(var j=0; j<3; j++) { %>
<div class="col-sm">
<div class="card border-danger mb-3" style="max-width: 20rem;">
<div class="card-body">
<h4 class="card-title"><%= details[i].name %></h4>
<p class="card-text">Location : <%= details[i].location %><br>
City: <%= details[i].city %><br>
Available: <%= details[i].available %><br>
Phone No: <%= details[i].phone %></p>
</div>
</div>
</div>
<% } %>
</div>
<% } %>
只是为了表示,我希望卡片以这种方式显示我的数据:
阿波罗的战车
相关分类