如何用百里香叶遍历二维数组

时间:2019-05-06 11:15:38

标签: java spring thymeleaf

我有一个数独生成器类,它以双数组(int)的形式返回一个9x9数独板,我试图遍历该数组并创建一个表,但是我被卡住了,我找不到任何信息Thymeleaf网站。

更新

感谢@Nikolas使它正常工作

<form  id="sudokuBoard" method="post">
        <table class="table table-dark">
            <tr th:each="row: ${board}">
                <td th:each="value: ${row}">
                    <div th:switch="${value}">
                        <input th:case="0" style="width:30px;height:30px;text-align:center" type = "text" maxlength="1" value="0">
                        <input th:case="*" style="width:30px;height:30px;text-align:center;background-color:lightgreen" type = "text" th:value="${value}" readonly>
                    </div>
                </td>
            </tr>
        </table>

        <input type="submit"> Check Solution </input>
    </form>

2 个答案:

答案 0 :(得分:2)

使用2个嵌套的th:each命令:

<table>
    <tr th:each="i: ${array}">
        <td th:each="item: ${j}">
            <span th:text="${item}"></span >
        </td>
    <tr>
</table>

答案 1 :(得分:1)

您可以像这样将2d数组转换为单个数组:

int k = 0;

for (int i = 0; i < 3; i++)
{
   for (int j = 0; j < 3; j++)
   {
      single_array[k++] = twoD_array[i][j];
   }
}