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>
posted on 2019-08-17 10:16 object360 阅读(5588) 评论(0) 编辑 收藏 举报