Thymeleaf后台传值读取

/**
 * 测试用Controller
 *
 * @author
 * @date 2019-08-15
 */
@Controller
@RequestMapping("/danyu/test")
public class DanyuTestController extends BaseController
{
    private String prefix = "danyu/test";


    @RequiresPermissions("danyu:test:view")
    @GetMapping()//@RequestMapping(method = RequestMethod.GET)
    public String test(Map<String,Object> model)
    {
        model.put("ttttttt", "我是你大爷啊啊");
        model.put("aaaaaaa", "123");
        return prefix + "/test";
    }

    
}

<!DOCTYPE html>
<html lang="zh" xmlns:th="http://www.thymeleaf.org" xmlns:shiro="http://www.pollix.at/thymeleaf/shiro">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />  
<head>
    <th:block th:include="include :: header('爱上对方')" />
</head>
  <body>
    <span th:text="${ttttttt}">Sebastian</span>
    <th:block th:include="include :: footer" />
    <script th:inline="javascript">
            
    </script>
  </body>
</html>

猜你喜欢

转载自www.cnblogs.com/object360/p/11367638.html