model.addattribute在前端怎么获取数据
时间: 2023-12-05 13:06:17 浏览: 89
springmvc后台基于@ModelAttribute获取表单提交的数据
5星 · 资源好评率100%
在Spring MVC中,使用`model.addAttribute`将数据添加到模型中,可以在前端通过`${}`语法来获取数据。
举个例子,在后端Controller中添加数据:
```
@RequestMapping("/hello")
public String hello(Model model) {
model.addAttribute("name", "World");
return "hello";
}
```
在前端页面中,可以使用`${}`语法获取数据:
```
<!DOCTYPE html>
<html>
<head>
<title>Hello Page</title>
</head>
<body>
<h1>Hello, ${name}!</h1>
</body>
</html>
```
在页面加载时,`${name}`会被解析为后端传递的数据,从而渲染成`Hello, World!`。
当然,前提是你需要在前端使用模板引擎来解析这些数据,比如使用Thymeleaf、Freemarker等。
阅读全文