thymeleaf如何取url中请求参数值

2023-10-03 10:46:19 百科 悟空

一、HTML取值

<span th:text="${param.cid}"></san>

或者

<span>[[${param.cid}]]</span>

二、 JS取值

<script>
let cid=[[${param.cid}]];
console.log(cid);
</script>

发表评论: