Thymeleaf 提供了一个默认的属性处理器,允许我们设置任何属性的值,即使在标准方言中没有为其定义具体的 th:* 处理器。
例如:我们在 <span> 标签中指定了一个在 Thymeleaf 中没有定义的 th:* 属性,那么 Thymeleaf 将该属性设置为 <span> 的属性。
在后端代码中,将 title 添加到上下文中。如下:
ctx.setVariable("title", "www.hxstrive.com");
前端页面设置了一个在 Thymeleaf 中没有定义的 th:whatever 属性,如下:
<span th:whatever="${user.name}">...</span>
模板渲染后,会在 <span> 标签中添加了一个自定义的 whatever 属性,如下:
<span whatever="www.hxstrive.com">...</span>