想将user对象传到js中并在js中获取其属性值怎样操作???
<tbody th:each="user:${users}">
<tr>
<td th:text="${user.userName}"></td>
<td><img class="ui circular image" th:src="${user.avatar}" style="height: 30px;width: 30px;"></td>
<td th:text="${user.email}"></td>
<td th:text="${user.roles}"></td>
<td th:text="${user.createTime}"></td>
<td th:text="${user.updataTime}"></td>
<td>
<button class="ui teal basic mini button" th:onclick="updateUser(user)">编辑</button>
<button class="ui red basic mini button">禁用</button>
</td>
</tr>
这因该是Thymeleaf中的标签使用方法吧!如果是,可以这样写th:onclick="updateUser([[${user}]])"就可以在js中获取该对象的属性了,我不太清楚你使用的Thymeleaf版本,有可能不支持这种写法,你可以先试试