在thymeleaf循环中显示arraylist内容

slwdgvem  于 2021-06-27  发布在  Java
关注(0)|答案(1)|浏览(344)

显示数据库中的项目时出现问题。我将我的item对象分配给arraylist并希望在html文件中显示它,每次尝试显示它时,都会出现白标签错误页。当我将此代码显示在其已工作但未迭代的下面时。
html格式:

<span th:text="${item.get(0).getItemName()}"></span>

^工作

<tr th:each="person, state : ${item}" class="row" th:classappend="${state.odd} ? 'odd-row' : 'even-row'">
    <td th:utext="${item.getItemName()}">Full Name</td>
</tr>

^不起作用
java 语:

List<item> item = new ArrayList<>();
itemRepository.findAll().forEach(item::add);

List<item> findList = new ArrayList<item>();

for (int i = 0; i < item.size(); i++) {
    if(item.get(i).getWhoAdd().equals(isExist.getId())){
        findList.add(item.get(i));
    }
}
model.addAttribute("item",findList);
return "item";
rt4zxlrg

rt4zxlrg1#

在显示为不工作的代码示例中,尝试使用以下命令

<td th:text="${person.getItemName()}">Full Name</td>

相关问题