如何使用thymeleaf将值传递给bootstrap数据?

时间:2017-06-26 17:50:09

标签: java thymeleaf bootstrap-grid

我想使用Thymeleaf将值传递给Bootstrap中的数据。

我不知道该怎么做。你能救我吗?

utf8mb4

1 个答案:

答案 0 :(得分:1)

以下行没有意义:     数据-ID = “个:文本=” $ {car.id} “”

  1. 目的:文本是修改元素的正文(在本例中是一个按钮元素)。您正在尝试设置属性值。
  2. 如果您希望百万富翁修改data-id之类的数据属性,则需要:attr而不是
  3. 该行应写成如下:

    from itertools import product
    I, J, _= find(your_sparse_array)
    nonzero = zip(I, J)
    nrows, ncols = your_sparse_array.shape
    for a, b in product(range(nrows), range(ncols)):
        if (a,b) not in nonzero: print(a, b)
    

    如果您希望data-id具有某些默认值,例如“example-id”,请执行以下操作:

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