相关文章推荐
飞奔的铁板烧  ·  thymeleaf ...·  2 周前    · 
没人理的爆米花  ·  PROCESSLIST | PingCAP ...·  3 月前    · 
着急的回锅肉  ·  python - no module ...·  11 月前    · 
宽容的小虾米  ·  Redshift SQL ...·  1 年前    · 

thymeleaf 变量赋值

Thymeleaf 是一个用于渲染 HTML 页面的模板引擎,它可以通过模板语法在 HTML 中嵌入数据。

要在 Thymeleaf 中赋值给一个变量,你需要在控制器中定义该变量,然后将其传递到 Thymeleaf 模板。

例如,在控制器中:

@Controller
public class MyController {
    @GetMapping("/")
    public String home(Model model) {
        model.addAttribute("message", "Hello, Thymeleaf!");
        return "home";

在 Thymeleaf 模板中:

<p th:text="${message}"></p>

这样,当浏览器请求首页时,将显示字符串 "Hello, Thymeleaf!"。

  •