当前位置: 首页 > 知识库问答 >
问题:

Thymeleaf java模板引擎正在更改一些特殊字符

孙才捷
2023-03-14
final Context ctx = new Context();
context.setVariable("data", data);
templateEngine.process(template, context).trim();

以下是进口:

import org.thymeleaf.TemplateEngine;
import org.thymeleaf.context.Context;

模板变量指向“content_completed”。其中完成的内容是一个存在于项目类路径中的html文件。

此html文件的内容:

<html xmlns:th="http://www.thymeleaf.org" th:inline="text" th:remove="tag">
[[${data.fileName}]][[${T(abc.composer.NoteData).COMPLETED_NO_ERRORS}]]
</html>

其中NoteData是一个java类

如果这是数据。文件名类似于“sample”

有什么想法可以避免这种情况吗?

共有2个答案

公冶嘉茂
2023-03-14

Thymeleaf正在转义文件名,以便浏览器无法解释

所以,我认为答案是,它做了正确的事情。在浏览器中查看HTML输出时,它将按预期呈现。

拓拔意
2023-03-14

我自己解决了。以下是解决方案:

<html xmlns:th="http://www.thymeleaf.org" th:inline="text" th:remove="tag">
<th:block th:utext="${data.fileName}"/>[[${T(abc.composer.NoteData).COMPLETED_NO_ERRORS}]]
</html>
 类似资料:
  • 具体查看ejs官方文档 https://github.com/mde/ejs

  • 我们自己实现了一个轻量级的模板引擎,不要问为什么不用smart之类的,因为我们认为没有必要为了一个小小的模板引擎而引入smaart这样复杂的实现。你可能会说,smart功能强大,支持各种标签,标签也是很强大,而且还可以对模板引擎进行各种"灵活"的配置... 这里我们觉得有必要说明一下: 框架的内置模板引擎基本上实现了我们日常开中所有常用的标签。 不常用的标签我们也做了巧妙的实现。 我们只提供了扩展

  • 内置模板引擎 视图的模板文件可以支持不同的解析规则,默认情况下无需手动初始化模板引擎。 可以通过下面的几种方式对模板引擎进行初始化。 配置文件 内置模板引擎的参数统一在配置目录的template.php文件中配置,例如: return [ // 模板引擎类型 支持 php think 支持扩展 'type' => 'Think', // 模板路径 '

  • Warning: The packages listed below may be outdated, no longer maintained or even broken. Listing here does not constitute an endorsement or recommendation from the Expressjs project team. Use at your

  • Use the app.engine(ext, callback) method to create your own template engine. ext refers to the file extension, and callback is the template engine function, which accepts the following items as parame

  • hi-nginx-java内置了两个mustache模板引擎:mustache.java和jmustache。 以下介绍仅就jmustache而言。 字符串模板 字符串模板是最简单的情况。例如: package test; import hi.request; import hi.response; import hi.route; import java.util.regex.Matcher