thymeleaf 相关问题

Thymeleaf是一个XML / XHTML / HTML5模板引擎(可扩展到其他格式),可以在Web和非Web环境中工作。它更适合在Web应用程序的视图层提供XHTML / HTML5,它甚至可以在脱机环境中处理任何XML文件。它提供了一个可选模块,用于与Spring MVC集成,因此您可以在使用此技术的应用程序中将其用作JSP的完全替代,即使使用HTML5也是如此。

Jasmine TypeError:无法读取未定义的属性(读取“安装”)

我在后面的 java maven 项目上,前面是 thymeleaf 的 web 应用程序。 我想建立一个测试框架,为此我选择了 Jasmine。 我对 Ajax 的测试有疑问

回答 0 投票 0

spring boot thymeleaf 对于不同的@GetMapping 路径意外的不同渲染

我目前正在玩 spring-boot-bootstrap-thymeleaf-tree-table 我正在将代码迁移到我的 spring-boot 项目中,一切顺利。 但是,如果我更改 @GetMapping 路径以传递 @

回答 1 投票 0

有没有办法显示编码为超过 100 000 个字符的字符串的图像? (Java、Spring、Thymeleaf)

所以,我有一个允许用户上传图像的表单,该图像将使用 IOUtils.toByteArray 进行编码并作为 bytea 保存到数据库中。在控制器方法中,我得到这个字节数组并编码......

回答 0 投票 0

如何在 thyemeaf 片段中包含 css 文件

我有一个模板装饰器作为基本 html 页面和许多带有片段的 html 页面,当我将 css 文件放在片段 html 的顶部时,我想在 html 片段页面中包含 css 文件

回答 2 投票 0

尝试使用 Thymeleaf(Java,Spring Boot)显示编码图像时出现异常

所以,我有一个允许用户上传图像的表单,该图像将使用 IOUtils.toByteArray 进行编码并作为 bytea 保存到数据库中。在控制器方法中,我得到这个字节数组并编码......

回答 1 投票 0

Micronaut 应用程序,配置了安全性,返回 js 和 css 文件的 Http 403

我正在试用 Micronaut 应用程序(版本 3.8.9)。除了少数 Rest API 之外,该应用程序还将具有用于前端的 HTML、Javascript 和 CSS,以及身份验证和授权。应用

回答 1 投票 0

Spring boot 连接 html

我想连接我的两个代码,Site Controller 和 index.html,所有 api 都必须正确无误地工作。 当我打开 localhost:8080/login 或随机 api 时,我的应用程序只显示我

回答 0 投票 0

th:field 属性在 fragment thymeleaf 中有红色下划线

我有这个片段,当单击一个按钮时它会打开一个模式,并且在该模型内部是一个带有用于令牌和提交按钮的文本字段的表单。 然而 th:field 属性标记似乎有 t...

回答 1 投票 0

Thymeleaf:是否需要在所有字段上使用 th:field *{}?

在 @GetMapping 中添加模型属性后,您是否需要在视图的表单中使用 th:field="*{...}" 添加所有字段? 例如,如果我将一个用户添加到模型中,并且我想要一个可以...

回答 1 投票 0

Thymeleaf 没有为 `<audio>`

我正在使用 Spring Boot 3.0.4 和 Thymeleaf。在最新的 Thymeleaf 文档 5.5 Fixed-value boolean attributes 中它说: HTML 有布尔属性的概念,没有变量的属性...

回答 0 投票 0

HTML 模板的 Thymleaf 转义引号

是否可以在 Thymleaf 中转义 HTML 模板的引号? 在为 Angular 应用程序生成 HTML 文件时,Thymleaf 使用 Unicode 值作为引用,而不是使用...

回答 0 投票 0

Thymeleaf 使用其索引时出现循环错误

我正在尝试逐个字母地迭代 Thymeleaf 中的字符串: ... 我正在尝试逐个字母地迭代 Thymeleaf 中的字符串: <div th:each="i: ${#numbers.sequence(0, #strings.length(name))}"> <p th:text="${name.charAt(i)}"></p> </div> 这给我一个错误: Caused by: org.attoparser.ParseException: 异常评估 SpringEL 表达式:“name.charAt(i)”(模板:“name-list” - 第 8 行, 第 16 栏)在 org.attoparser.MarkupParser.parseDocument(MarkupParser.java:393)在 org.attoparser.MarkupParser.parse(MarkupParser.java:257) 在 org.thymeleaf.templateparser.markup.AbstractMarkupTemplateParser.parse(AbstractMarkupTemplateParser.java:230) ... 还有 48 个 如果我这样做 <div th:each="i: ${#numbers.sequence(0, #strings.length(name))}"> <p th:text="${name.charAt(2)}"></p> </div> Thymeleaf 不抱怨,给了我想要的。谢谢。 您的索引超出范围。从序列端点的字符串长度中减去一个(包含)。 <div th:each="i: ${#numbers.sequence(0, #strings.length(name) - 1)}"> 您可以直接使用 [i] 通过索引访问字符,而不是 charAt 也。 <p th:text="${name[i]}"/> 为避免使用索引,您可以遍历字符串的字符(可通过调用 toCharArray() 获得)。 <div th:each="c: ${name.toCharArray()}"> <p th:text="${c}"/> </div> 您也可以使用 index 属性并尝试如下 <div th:each="i,itr: ${#numbers.sequence(0, #strings.length(name))}"> <p th:text="${name.charAt(itr.index)}"></p> </div>

回答 2 投票 0

无法将“java.lang.String”类型的值转换为所需类型“java.lang.Integer”;对于输入字符串

我正在尝试为测验网络应用程序制作一个基本的 spring boot 应用程序,它从 MYSQL 数据库中获取项目列表并将它们放入列表中 然后我做一些随机化来生成他的问题......

回答 0 投票 0

Spring - 在 Thymeleaf 注册后,有没有办法显示记录的 id?

在我的项目中,我想在 Thymeleaf 成功插入后在视图中显示记录的 ID。 有没有办法得到那个结果? 实体: @实体 @Table(name = "用户&...

回答 1 投票 0

spring boot thymeleaf 项目未在外部 tomcat 中作为战争运行

我在 spring boot thymeleaf 中开发了项目,当我打包为 war 时,它打包一切都很好,但是当我在 tomcat 上运行它时它没有启动我的应用程序。 首先我在 pom 中添加为 哇...

回答 0 投票 0

将变量从 thymeleaf 传递给 javascript 函数?

我有一个 html 文件 thymeleaf,它有一个从控制器传递的变量,我需要将其提供给外部 javascript 文件上的函数。 我该怎么做呢 ? 我可以获得像 ...

回答 5 投票 0

如何获得计算结果(在制作 Java 科学计算器时)..? [关闭]

我在进行java科学计算时遇到了一些问题。 (堆栈:Java17、Spring Boot3.0.5、ThymeLeaf、JavaScript ..) 我的目标是在 /calcu... 上展示数学表达式及其结果

回答 0 投票 0

How to process an HashMap<Object, List<Object2>> with Thymeleaf?

我有包含和关联两个对象的地图列表: 键是一个对象用户,具有 firstName、lastName 和 age 作为属性 附加到键的值是另一个对象的列表:toD ...

回答 0 投票 0

Using thymeleafs field.errors in script tags javascript

我目前有一个功能,可以在提交表单时将 h6 设置为成功消息。但是,表单字段(名称)可能有错误,如带有 fields.errors 的 div 所示。当前消息

回答 0 投票 0

Cookie SameSite 属性

在使用 thymeleaf 的 spring boot 应用程序中。 当用户在选择中选择项目时,我在 cookie 中设置一个值以便能够返回 ... 在使用 thymeleaf 的 spring boot 应用程序中。 当用户在选择中选择项目时,我在 cookie 中设置一个值以便能够返回 <div class="col-sm-3"> <form> <div class="form-group"> <label for="testType" th:text="#{testTypeEnum.select.label}"></label> <select class="form-control" id="testType" > <option th:value="NULL" selected="selected" th:text="#{form.select.empty}"></option> <option th:each="testType : ${testTypes}" th:value="${testType}" th:text="#{'testTypeEnum.'+${testType}}"></option> </select> </div> </form> </div> <script type="text/javascript" th:inline="javascript"> $(document).ready(function () { $("#testType").on('change', function() { var valueSelected= this.value; document.cookie = "selectedTestType="+valueSelected; var url = "/samplestesttable?testTypeValue="+valueSelected; $("#testListResultFragment").load(url); }); function getCookie(cname) { var name = cname + "="; var decodedCookie = decodeURIComponent(document.cookie); var ca = decodedCookie.split(';'); for(var i = 0; i <ca.length; i++) { var c = ca[i]; while (c.charAt(0) == ' ') { c = c.substring(1); } if (c.indexOf(name) == 0) { return c.substring(name.length, c.length); } } return ""; } var selectedTestType = getCookie("selectedTestType"); if(selectedTestType !== ""){ $("#testType").val(selectedTestType).change(); } }); </script> 效果很好。 但是几个月后,我在浏览器开发控制台中看到了 Cookie“selectedTestType”没有正确的“SameSite”属性值 也许现在有更好的方法来做同样的事情?

回答 0 投票 0

© www.soinside.com 2019 - 2024. All rights reserved.