根據自我需求,thymeleaf能夠直接將後端數據傳遞給js中進行使用,例如:javascript
1.後端接口數據:java
@Controller
public class TestController { @RequestMapping(value = "test", method = RequestMethod.GET) public String test(Model model) { model.addAttribute("test", "hello"); return "index"; } }
利用thymeleaf將其傳遞給js使用:後端
<script th:inline="javascript"> var test= [[${test}]]; console.log(test); </script>
注:[[…]]之間的內容能夠被賦值。爲了使其生效,必須在此標籤或者任何父標籤上有th:inline屬性。此屬性有三種值(text , javascript and none)app