Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的 index.html 是通过 https 连接从服务器获取的(否则我的 oauth 过程会出现问题)。
但是 weinre 目标代码的地址是 http 而不是 https,因此出于安全原因,浏览器不会加载它(至少在桌面 chrome 上,但我认为 inapp 浏览器也会发生同样的情况 - 对吗?)
我该如何解决这个问题?
由于您控制phonegap的访问限制,添加
<access origin="http://192.168.1.100" />
到 config.xml 解决了这个问题。
(其中ip地址是我的调试电脑本地网络地址)