1
// Template
<%@ tag description="master" pageEncoding="UTF-8"%>
<%@ attribute name="js" fragment="true" %>
<!doctype html>
<c:set var="myVar" value="1" />
<html>
<head>
    <jsp:invoke fragment="js" />
</head>
<body>
</html>

// Page
<%@ page pageEncoding="UTF-8"%>   
<%@ taglib prefix="t" tagdir="/WEB-INF/tags" %> 
<t:master>
    <jsp:attribute name="js">
        <script type="text/javascript" src="/javascript/administration/customers.js"></script>
    </jsp:attribute>
</t:master>

ページからアクセスできmyVarますか? ありがとうございました

解決策 1: で変数を宣言scope="request"できるので、 経由でアクセスできます${requestScope.test}。しかし、それは良い方法ですか?

4

1 に答える 1

1

解決策: scope="request" で変数を宣言すると、${requestScope.test} からアクセスできるようになります。

于 2013-06-26T12:15:50.043 に答える