美文网首页
template or fragment could not b

template or fragment could not b

作者: 秃头哥编程 | 来源:发表于2019-05-24 17:47 被阅读0次

写项目的时候,出现这个错误,模板引擎使用的是Thymeleaf,出错的语句确定是下面这行

<div th:replace="carousel :: html"></div>

这是在一个html引入另一个html,反复检查之后发现没啥错误,于是我对比了一下以前写的,发现现在写的少了html标签

<html xmlns="http://www.w3.org/1999/xhtml">
</html>

用这对标签把内容括住后就解决了bug。

相关文章