首页 新闻 会员 周边 捐助

想将user对象传到js中并在js中获取其属性值,怎样操作???

0
悬赏园豆:20 [待解决问题]

想将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>

少年12的主页 少年12 | 初学一级 | 园豆:174
提问于:2020-03-28 15:44
< >
分享
所有回答(1)
0

这因该是Thymeleaf中的标签使用方法吧!如果是,可以这样写th:onclick="updateUser([[${user}]])"就可以在js中获取该对象的属性了,我不太清楚你使用的Thymeleaf版本,有可能不支持这种写法,你可以先试试

败给了时间 | 园豆:202 (菜鸟二级) | 2020-03-29 17:08
清除回答草稿
   您需要登录以后才能回答,未注册用户请先注册