gpt4 book ai didi

jsp - 动态包含 JSP

转载 作者:行者123 更新时间:2023-12-02 17:29:32 27 4
gpt4 key购买 nike

学过jsp native,想包含动态文件。我想使用 include 调用动态页面

这段代码

<% String p = request.getParameter("p"); %>

<%@ include file="pages/"+p+".jsp" %>

如果我输入 dashboard.jsp?p=about 页面打开“pages/about.jsp”

如果我输入 dashboard.jsp?p=product 页面打开“pages/product .jsp”

在 php 中这个脚本是这样的

$p= $_GET['p'];
include(pages/'.$p.'.php');

最佳答案

类似问题 Include file from dynamic property value

你的情况

<% String p = request.getParameter("p"); 
String pagePath = "pages/" + p + ".jsp";
%>

<jsp:include page="<%= pagePath %>" ></jsp:include>

关于jsp - 动态包含 JSP,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35332372/

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