51工具盒子

依楼听风雨
笑看云卷云舒,淡观潮起潮落

在js中获取thymeleaf变量(二)

所谓天才,只不过是把别人喝咖啡的功夫都用在工作上了。------鲁迅

上回写过在js中获取thymeleaf变量

但比较繁琐

这次用简单的写法

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

效果如下

image-20210705234534494

如果是字符串也支持的

|-----------------|--------------------------------------------------| | 1 2 3 4 | hljs html <div> [[${id}]] [['id']] </div> |

image-20210705234742185

赞(0)
未经允许不得转载:工具盒子 » 在js中获取thymeleaf变量(二)