我想在for循环中呈现<th>
,th中的内容是变量。但是当呈现HTML时,每个<th>
之间有许多换行符。我不是在问如何使用<% -%>修剪模式删除可变换行符。
<thead>
<th class="yellow-field"></th>
<% blockUnitDetail.UnitArr.forEach(unit=>{ %>
<th class="yellow-field"><%= unit %></th>
<% }) %>
</thead>
HTML:
<thead>
<th class="yellow-field"></th>
<th class="yellow-field">A1</th>
<th class="yellow-field">A2</th>
<th class="yellow-field">A3</th>
1条答案
按热度按时间xpcnnkqh1#
控制流代码
if else ...
将占据HTML中的一行。因此,应该使用空白修剪模式(slurp所有空格)的控制流<%_ _%>