我试图将一个对象的ID作为整数从用户对象中的角色对象列表返回到DTO对象。
我已经尝试过
<select class="custom-select custom-select-sm" th:name="'roles[' + (${rowStat}? ${rowStat.index} : '-1') + '].roleid'">
<option th:each="role,rowStat : ${allroles}" th:value="${role.id}" th:text="${role.role}">0</option>
</select>
但是我仍然收到此错误: 属性或字段“索引”为空。
我的百里香叶语法或某些逻辑问题出了问题。