我正在尝试与变量比较,如果它们不相等,则将其打印出来。其中一个是从json从我的节点应用程序传到我的jsreport服务器,另一个是动态变量,我正在为其设置值并为其分配新值。
我尝试了许多车把帮手,几乎没有对我有用的帮手。我对车把真的很陌生,我主要使用哈巴狗和ejs
{{#each result}}
{{setVar "lastdebit" 0}}
<tr class="item">
<td>
{{datefunc date}}
</td>
<td style="text-align: center;">
{{particular}} {{sale_qty}} {{invoice_qty}} X {{unit}} {{unit_type}} {{item_name}}
</td>
<td style="text-align: center;">
{{sale_cr}}
{{invoice_cr}}
</td>
<td>
{{#compare debit lastdebit operator="!=" }}
{{debit}} x {{lastdebit}}
{{/compare}}
</td>
<td>
{{credit}}
</td>
<td style="text-align: right;">
{{BALANCE}}
</td>
</tr>
{{setVar "lastdebit" debit}}
{{/each}}
我想将每次循环的当前借方值设置为lastdebit