前台freemark获取后台的值
时间: 2023-09-20 11:10:04 浏览: 59
要在前台Freemarker中获取后台的值,需要在后台将值存储在ModelAndView中,然后在前台使用${}表达式获取。
例如,在后台Controller中存储一个名为"message"的值:
```java
ModelAndView modelAndView = new ModelAndView();
modelAndView.addObject("message", "Hello, World!");
```
在前台Freemarker中使用${}表达式获取这个值:
```html
<p>${message}</p>
```
这样就可以在前台页面中显示"Hello, World!"这个值了。
阅读全文