英文:
This content cannot be displayed in a frame - eclipse (displayHelpResource(href))
问题
我正在尝试通过displayHelpResource(href)
函数在我的应用程序中打开一个URL。但是我看到了以下内容:
此内容无法在框架中显示
为了保护您输入到此网站的信息的安全性,此内容的发布者不允许在框架中显示。
我已经理解该网站正在阻止框架访问。有什么方法可以通过displayHelpResource(href)
函数打开所需的URL呢?
英文:
I'm trying to open a URL in my application through the displayHelpResource(href)
function.
But I'm being shown the following :
This content cannot be dispalyed in a frame
To help protect the security of information you enter into this website, the publisher of this content does not allow it to be displayed in a frame.
I've understood that the site is blocking the Frame access. What can be done to open the desired URL using the displayHelpResource(href)
function.
答案1
得分: 0
你可以在 href 后面添加 noframes=true
,以阻止使用框架。
http:xxxxx?noframes=true
在实际使用之前,帮助系统会将 noframes=true
的文本从 href 中移除。
英文:
You can add noframes=true
to the href you stop frames being used
http:xxxxx?noframes=true
The noframes=true
text is removed from the href by the help system before it is actually used.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论