如何在Adobe AIR中使用JavaScript获取页面的HTML内容?
我正在使用 JavaScript 开发 Adobe Air 应用程序。我想获取另一个网站页面的 HTML 内容,但我做不到。
要求:跨域、无服务器。
示例:使用 JavaScript 获取页面“www.google.com”的 HTML 内容,该内容在本地运行,无需服务器。
感谢您的帮助。:)
I'm developing an Adobe Air app using JavaScript. I want to get HTML content of another website page, but I can't do it.
Requirement: cross-domain and no server.
Example: get HTML content of page "www.google.com" using JavaScript, which runs locally, no server.
Thanks for your help.:)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我对 Adobe AIR 一无所知,但是通过 Google 快速搜索“adobe air api”,我找到了 URLRequest。
这表明,在同域策略方面,Adobe AIR 不受与浏览器相同的安全限制的限制。
I don't know anything about Adobe AIR, but a quick google search of "adobe air api" lead me to URLRequest.
It suggests that Adobe AIR is not restricted by the same security limitations as browsers when it comes to the same-domain policy.
没有本地服务器=没有运气。您无法从浏览器跨域发出 xmlhttp 请求。您需要从服务器执行此操作。
No local server = no luck. You cannot make xmlhttp requests across domains from a browser. You need to do this from a server.