从 iframe 内部调用时请求参数无法正常工作
我有一个名为 search.jsp 的搜索页面。我这个页面有一个相应的struts搜索动作。当您点击“搜索”链接时,一切都很完美。
我的搜索页面网址类似于
http://www.localhost:8080/Search.ff?blah=1&popo=2
现在我从 iframe 内网站的不同页面调用相同的搜索页面。
我现在使用相同的 url 作为 iframe src url
http://www.localhost:8080/Search.ff?blah=1&popo=2&showheader=yes
我尝试获取 search.jsp 页面内的参数,就像
<% String showheader = (String)request.getParamter("showheader"); %>
我调试 showheader 为空时一样。
我希望当在 iframe 中调用搜索页面时,我不应该显示搜索页面标题。
我不明白真正的问题是什么以及如何解决这个问题。
I have a search page called search.jsp. I have a corresponding struts search action for this page. Everything works perfect when u click on "search" link.
My search page url is something like
http://www.localhost:8080/Search.ff?blah=1&popo=2
Now i am calling the same search page from a different page of my website inside an iframe.
I use the same url now as a iframe src url
http://www.localhost:8080/Search.ff?blah=1&popo=2&showheader=yes
I try to get the parameter inside search.jsp page as
<% String showheader = (String)request.getParamter("showheader"); %>
when i debugged showheader was null.
I want that when the search page is called within iframe i should not display the search page header.
I don't understand what the real problem and how can i rectify the issue.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试一下
(区别在于引号)
try
(The difference are the quotes)