所谓天才,只不过是把别人喝咖啡的功夫都用在工作上了。------鲁迅
但比较繁琐
这次用简单的写法
|-----------------|------------------------------------------------------------------------|
| 1 2 3 4
| hljs html <script> var id = [[${id}]] console.log(id) </script>
|
非常简单~
不过要注意一点,如果是对象格式的数据,需要在script
标签上加th:inline="javascript"
|-----------------|-----------------------------------------------------------------------------------------------|
| 1 2 3 4
| hljs html <script th:inline="javascript"> var id = [[${id}]] console.log(id) </script>
|
在页面中也可以直接使用,可以代替th:text
|---------------|-----------------------------------------|
| 1 2 3
| hljs html <div> [[${id}]] </div>
|
效果如下
如果是字符串也支持的
|-----------------|--------------------------------------------------|
| 1 2 3 4
| hljs html <div> [[${id}]] [['id']] </div>
|