HTML 模板的 Thymleaf 转义报价

Thymleaf escape quotes for HTML template

提问人:Georgian Stan 提问时间:5/2/2023 更新时间:5/2/2023 访问量:26

问:

是否可以在 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: &#39;RED&#39;}]"></my-component>
Java 模板 Thymeleaf

评论

0赞 Metroids 5/3/2023
我认为这是不可能的......Angular 不能与?&#39;

答: 暂无答案