<s:property value="detailForm.reportNoT"/>改成thymeleaf写法
时间: 2023-10-24 10:07:51 浏览: 86
thymeleaf-extras-java8time-3.0.4.RELEASE-API文档-中英对照版.zip
将 `<s:property value="detailForm.reportNoT"/>` 改成 Thymeleaf 的写法,可以使用 Thymeleaf 的表达式语法 `${...}` 来替代。下面是将该代码改写成 Thymeleaf 写法的示例:
```html
<span th:text="${detailForm.reportNoT}"></span>
```
在这个示例中,我们使用 `<span>` 标签来展示 `detailForm.reportNoT` 的值。通过 `th:text` 属性,我们可以将 Thymeleaf 表达式 `${detailForm.reportNoT}` 的结果作为文本内容进行展示。
同样地,具体的使用方式可能会根据你的项目结构和需求而有所不同。你可以根据自己的实际情况进行调整和修改。
阅读全文