如何在jsp include标签的页面属性中使用变量?
如何在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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用
(并修复不正确的 EL 表达式,它应该遵循${}
语法)但是,由于它是从请求参数派生的,因此您应该能够直接在包含的 JSP 页面中使用
${param.type}
,而无需将其作为
。Use
<jsp:param>
(and fix your incorrect EL expression, it should follow${}
syntax)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>
.使用
${param.type}
而不是{$param.type}
,如果这不起作用,请使用param
标记:Use
${param.type}
instead of{$param.type}
, if this does not work useparam
tag: