【发布时间】:2017-11-29 15:25:31
【问题描述】:
我想使用 Thymeleaf 将值传递给来自 Bootstrap 的数据。
我不知道该怎么做。你能帮帮我吗?
<tr th:each="car : ${lCars}" class="succes">
<td th:text="${car.id}"></td>
<td th:text="${car.name}"></td>
<td align="center">
<button type="button" class="btn btn-primary"
data-toggle="modal" data-target="#editar" title="Edit"
data-id= "th:text="${car.id}"" <!-- I want to pass this value on to the data, but this way doesn't work -->
data-name="myCar" <!-- If I send a simple word, works well -->
<span class="glyphicon glyphicon-pencil"></span> Edit
</button>
</td>
</tr>
【问题讨论】:
标签: java thymeleaf bootstrap-grid