3

当我从 phonegap 构建我的应用程序时。它适用于 iPhone、iPad、Android,但不适用于黑莓。

我正在调用跨域 API WSDL。

在黑莓中它给出了错误

 URL (exmple :- http://google.com)- could not be retrieved because it was not found in config.xml.

 Please verify the <access> elements in the WebWorks config. Contact your service provider if the problem persists.

我必须使用config.xml

<access subdomains="true" uri="*" /> OR <access origin="*" />

?

4

1 回答 1

0

上次我遇到这个问题时,似乎所有的 URL 都必须是明确的 BB。如果您的 URL 在运行时未知(例如,用户输入了 URL),那么唯一的解决方法是

<feature id="blackberry.app" >
    <param name="websecurity" value="disable" />

于 2013-05-15T13:37:24.910 回答