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.
我正在尝试将域 url 添加到我的白名单中。说明说我必须在其中找到该文件Cordova.plist,AppName/Supporting Files/Cordova.plist但我也没有名为 Supporting Files 的目录。
Cordova.plist
AppName/Supporting Files/Cordova.plist
我只有一个myapp-Info.plist文件,看不到将项目添加到白名单的位置。
myapp-Info.plist
我正在使用 Cordova 2.7.0。有谁知道我应该做什么?
在 cordova 2.7.0 中您将无法找到Cordova.plist,它已从之前的某些版本中删除,而是您可以看到config.xml,您可以在 config.xml 中将域 url 设置为白名单,如下所示:
config.xml
<access origin="*" /> // for all url
或者
<access origin="your url" />