gpt4 book ai didi

java - JSTL:从自定义标签获取变量

转载 作者:太空宇宙 更新时间:2023-11-04 07:34:19 25 4
gpt4 key购买 nike

// 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} 访问它。但这是个好方法吗?

最佳答案

解决方案:使用scope="request"声明变量,并且可以通过${request Scope.test}访问该变量。

关于java - JSTL:从自定义标签获取变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17185951/

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