themeleaf基础语法_获取变量值

使用${}获取值

页面Demo




    hello
    


hhhh

后台Demo

   @RequestMapping(value="/hello",method = RequestMethod.GET)
    public String helloTheme(Model model){
        model.addAttribute("name", "world");
        return "/hello";
    }

示例

1.后台设置值,页面取值的情况


Paste_Image.png

2.后台不设值,页面取值的情况


Paste_Image.png

3.页面不写th:text="'Hello, ' + ${name} + '!'"的情况
Paste_Image.png

你可能感兴趣的:(themeleaf基础语法_获取变量值)