当我点击带有额外数据的行时,我曾尝试显示引导模式 但当你试图打印对象时,它不起作用:
<table id="datatable" class="table table-striped table-bordered">
<thead>
<tr>
<th># Factura</th>
<th>Cliente</th>
<th>Fecha</th>
<th>Accion</th>
</tr>
</thead>
<tbody>
<tr th:each="bill : ${bills}">
<td th:text="${bill.bill_id}"></td>
<td th:text="${bill.client.name}"></td>
<td th:text="${bill.date}"></td>
<td>
<a class="btn btn-info btn-xs open-modal" data-whatever="[[{$bill}]]" data-toggle="modal" data-target="#billModal">Ver Detalles</a>
</td>
</tr>
</tbody>
</table>
所以,我不知道如何对账单对象并将其发送到模态,我已经尝试了很多方法。它只有当我用th:text或th:value
时序列化答案 0 :(得分:0)
th:attr="data-whatever=${bill}"
答案 1 :(得分:0)
至少在Thymeleaf 2.x中,您需要使用data-whatever
指令来填充任意属性值(例如th:attr="data-whatever=${bill}"
)。
例如
th:data-whatever="${bill}"
在Thymeleaf 3中,您可以使用内联属性。我还没有使用它,如果属性值安全,文档也不清楚。
请参阅http://www.thymeleaf.org/doc/tutorials/3.0/usingthymeleaf.html#setting-attribute-values
根据文档,您甚至可以使用default attribute processor
Function CountCcolor(range_data As range, criteria As range) As Long
Dim datax As range
Dim xcolor As Long
xcolor = criteria.Interior.ColorIndex
For Each datax In range_data
If datax.Interior.ColorIndex = xcolor Then
CountCcolor = CountCcolor + 1
End If
Next datax
End Function