提问人:Georgian Stan 提问时间:5/2/2023 更新时间:5/2/2023 访问量:26
HTML 模板的 Thymleaf 转义报价
Thymleaf escape quotes for HTML template
问:
是否可以在 Thymleaf 中对 HTML 模板进行转义?
在为 Angular 应用程序生成 HTML 文件时,Thymleaf 使用 Unicode 值作为 UTF-8 字符的 quoate iinstead 使用。'
例如: Thymleaf 模板如下:
<my-component th:fragment="componentField (field)" th:[colors]="${field.colors}"></my-component>
预期 - 预期结果是:
<my-component [colors]="[{ type: 'RED'}]"></my-component>
实际 - 实际结果是:
<my-component [colors]="[{ type: 'RED'}]"></my-component>
答: 暂无答案
下一个:ArrayList 的初始大小
评论
'