简体   繁体   中英

how to pass a value using thymeleaf to data of bootstrap?

I want to use Thymeleaf to pass a value to data from Bootstrap.

I don't know how to do it. Can you help me?

<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>

The following line makes no sense: data-id="th:text="${car.id}""

  1. The purpose of th:text is to modify the body text of the element (in this case, a button element). You're trying to set an attribute value.
  2. If you want thymeleaf to modify a data attribute like data-id, you need to th:attr instead

That line should be written as follows:

data-id="" th:attr="data-id=${car.id}"

If you want the data-id to have some default value like "example-id", do this:

data-id="example-id" th:attr="data-id=${car.id}"

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM