這裡是控制器裡返回的
/**
* @param pageUtil 分頁工具類
* @param cliCorpQuery 查詢類
* @param model model
* @return String
*/
@RequestMapping(value = {"/list"}, method = RequestMethod.GET)
public String list(PageUtil<CliCorp> pageUtil, CliCorpQuery cliCorpQuery, Model model) {
PageUtil<CliCorp> corps;
try {
corps = corpClientService.queryByPage(pageUtil, cliCorpQuery);
} catch (Exception e) {
logger.error("queryByPage error:" + e.getMessage());
return "queryByPage error";
}
model.addAttribute("corps", corps);
return VIEW_PATH + "list";
}
頁面
<tr th:each="corp:${corps.contents}">
<td><span th:text="${corp.name}"></span></td>
<td><span th:text="${corp.creditCode}"></span></td>
<td><span th:text="${corp.taxNo}"></span></td>
<td><span th:text="${corp.showName}"></span></td>
<td><span th:text="${corp.bank}"></span></td>
<td><span th:text="${corp.bankAccount}"></span></td>
<td><span th:text="${corp.agent}"></span></td>
<td><span th:text="${corp.address}"></span></td>
<td><span th:text="${corp.status}"></span></td>
<td><span th:text="${corp.creator}"></span></td>
<td>
<button type="button" th:onclick="'javascript:check('+${corp.id}+',2)'">審核
</button>
<button type="button" th:onclick="'javascript:check('+${corp.id}+',3)'">拒絕
</button>
</td>
</tr>
JS
function check(id, status) {
$.ajax({
type: "POST",
data: {id: id, status: status},
url: "/admin/corp/check",
success: function (data) {
if (data == "認證成功") {
window.location.href = ("/admin/corp/list");
} else {
alert("認證失敗");
}
},
error: function (data) {
alert("認證失敗");
}
});
}
以上所述是小編給大家介紹的Spring boot + thymeleaf 後端直接給onclick函數賦值的實現代碼,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回復大家的。在此也非常感謝大家對網站的支持!