从动态属性值包含文件
我有一个Java thgat项目需要使用;
<%@include file="content.jsp" %>
将文件包含到当前 jsp 页面中。
但是,我现在需要 content.jsp 是动态的。
如何用变量替换引号中的所有内容?
所以;
<%@include file=myVariable %>
I have a project in Java thgat needs to use;
<%@include file="content.jsp" %>
to include a file into the current jsp page.
However, I now need the content.jsp to be dynamic.
How can I substitute everything in the quotes with a variable?
So;
<%@include file=myVariable %>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用动态包含而不是使用静态包含,然后您可以执行以下操作:-
或
Instead of using static include, you can use dynamic include, then you can do something like this:-
or
我可以通过在关闭标签后使用静态包含来解决问题
所以它仍然是静态的,可以像分配一个字符串一样使用
i have work around by using the static include after closing the tag
so it still static and can be used as if you assign a string