老曲 1.5.3数据导入到2.1.0后,使用这个主题报错,主页都打不开 org.thymeleaf.exceptions.TemplateProcessingException: Exception evaluating SpringEL expression: "#strings.length(content.content)" (template: "modules/post-list" - line 65, col 74)
比克 反馈:1.0.6版,templates/modules/indexMoment.html,4处<a th:href="@{${site.url}+ 'page/' + ${index}}" th:text="${index}">其中【page/】前面少个/,导致访问第二页的时候会出现xxx.compage/2的情况,加上/后就解决了 <a th:href="@{${site.url}+ '/page/' + ${index}}" th:text="${index}">