gpt4 book ai didi

spring-mvc - thymeleaf + polymer

转载 作者:行者123 更新时间:2023-12-03 10:01:48 25 4
gpt4 key购买 nike

我正在尝试使用 Java Thymeleaf 模板引擎实现基于 Polymer 的 Material 设计。我开始通过这个学习 tutorial并得到这个异常(exception):

Caused by: org.xml.sax.SAXParseException; Attribute name "unresolved" associated with an element type "body" must be followed by the ' = ' character.

据我了解 Thymeleaf,默认情况下无法处理 Web 组件/自定义组件。是否可以在 Thymeleaf 模板引擎的上下文中使用 Polymer?

最佳答案

如果你有这样的事情:

<body unresolved touch-action="auto">

它不适用于 Thymeleaf,因为 Thymeleaf 期望标记是有效的 XHTML,而 unresolved 本身就是无效的 XHTML 标记。然而,以下应该有效:

<body unresolved="" touch-action="auto">
<body unresolved="unresolved" touch-action="auto">

关于spring-mvc - thymeleaf + polymer ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25353806/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com