我还没有找到与我有同样问题的任何问题。
使用:
<%@ page trimDirectiveWhitespaces="true" %>
<%@ taglib prefix="template" tagdir="/WEB-INF/tags/desktop/template" %>
<%@ taglib prefix="cms" uri="http://hybris.com/tld/cmstags" %>
<%@ taglib prefix="common" tagdir="/WEB-INF/tags/desktop/common" %>
<%@ taglib prefix="modal" tagdir="/WEB-INF/tags/desktop/modal" %>
<template:page pageTitle="${pageTitle}">
<jsp:attribute name="modal">modal content</jsp:attribute>
<jsp:body>body content</jsp:body>
</template:page>
我的网页渲染得很好。但只需交换2行:
<%@ page trimDirectiveWhitespaces="true" %>
<%@ taglib prefix="template" tagdir="/WEB-INF/tags/desktop/template" %>
<%@ taglib prefix="cms" uri="http://hybris.com/tld/cmstags" %>
<%@ taglib prefix="common" tagdir="/WEB-INF/tags/desktop/common" %>
<%@ taglib prefix="modal" tagdir="/WEB-INF/tags/desktop/modal" %>
<template:page pageTitle="${pageTitle}">
<jsp:body>body content</jsp:body>
<jsp:attribute name="modal">modal content</jsp:attribute>
</template:page>
页面随机有时呈现正常,有时会给我错误:
HTTP Status 500 - /WEB-INF/views/desktop/pages/account/accountLoginPage.jsp (line: 9, column: 2) Unterminated <template:page tag
有什么想法吗?