如何在jsp include标签的页面属性中使用变量?

发布于 2024-12-01 08:18:47 字数 285 浏览 2 评论 0原文

如何在jsp include标签的页面属性中使用变量?

<jsp:include page="/adminadvertisement?type=c80&action=showall" /> 

我想在页面属性中插入一个作为参数传递的变量。类似于

<jsp:include page="/adminadvertisement?type={$param.type}&action=showall" />

how to use variable in page attribute of jsp include tag ?

<jsp:include page="/adminadvertisement?type=c80&action=showall" /> 

I want to insert a variable passed as parameter in page attribute .Something like

<jsp:include page="/adminadvertisement?type={$param.type}&action=showall" />

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

少跟Wǒ拽 2024-12-08 08:18:47

使用 (并修复不正确的 EL 表达式,它应该遵循 ${}语法)

<jsp:include page="/adminadvertisement">
    <jsp:param name="type" value="${param.type}" />
    <jsp:param name="action" value="showall" />
</jsp:include>

但是,由于它是从请求参数派生的,因此您应该能够直接在包含的 JSP 页面中使用 ${param.type} ,而无需将其作为

Use <jsp:param> (and fix your incorrect EL expression, it should follow ${} syntax)

<jsp:include page="/adminadvertisement">
    <jsp:param name="type" value="${param.type}" />
    <jsp:param name="action" value="showall" />
</jsp:include>

However, since it's to be derived from the request parameter, you should be able to use ${param.type} inside the included JSP page page directly without passing it as <jsp:param>.

星星的軌跡 2024-12-08 08:18:47

使用 ${param.type} 而不是 {$param.type},如果这不起作用,请使用 param 标记:

<jsp:include page="/adminadvertisement"> 
    <jsp:param name="type" value="${param.type}"/>
</jsp:include>

Use ${param.type} instead of {$param.type}, if this does not work use param tag:

<jsp:include page="/adminadvertisement"> 
    <jsp:param name="type" value="${param.type}"/>
</jsp:include>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文