Thymeleaf @{}和${}嵌套使用的问题解决

//错误的写法
<img th:src="@{/getImage/${attDesc.identityImgN}" alt="身份证反面">
//正确的写法
<img th:src="@{/getImage/{filename}(filename=${attDesc.identityImgN})}" alt="身份证反面">

 

posted on 2021-09-22 19:07  汤姆猫8  阅读(221)  评论(0)    收藏  举报