我已将Cordova iOS应用升级到最新版本:
iOS 4.1.0
Cordova 6.0.0
我已经更新了插件并添加了新的WKWebView Engine插件。
我已将Content-Security-Policy添加到index.html文件中:
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; script-src 'self' 'unsafe-inline' 'unsafe-eval'; style-src 'self' 'unsafe-inline'; img-src 'self' 'unsafe-inline' data:;connect-src 'self' https://mydomain/myservice/; plugin-types application/pdf">
我的config.xml始终包含:
<content src="index.html" />
<access origin="*" />
但我添加了
<access origin="*.mydomain.*" />
好的措施。
我控制了应用尝试连接的网络服务器,我已经启用了CORS:
<httpProtocol>
<customHeaders>
<add name="Access-Control-Allow-Origin" value="*" />
</customHeaders>
</httpProtocol>
服务器具有有效的SSL证书,所有调用都是https://。
我在xCode中的plist有:
Allow Arbitrary Loads : Yes
Exception Domains
[mydomain]
NSIncludesSubdomains : Yes
NSTemporaryExceptionAllowsInsecureHTTPLoads : YES
NSTemporaryExceptionMinimumTLSVersion : TLSv1.1
我正在构建应用程序并将其直接运行到设备上并使用Safari Develop来查看错误。
我有这个应用的Android版本,有自己更新的基本代码,工作正常。
我的进一步研究表明,这是导致问题的新WKWebView Engine插件。但我发现的唯一建议是在Ionic论坛中,而且我没有在这个版本中使用Ionic。
只是为了确认,这些是我在调试中从Safari获得的错误消息:
[Error] Failed to load resource: the server responded with a status of 405 (Method Not Allowed) ([my thing], line 0)
[Error] Failed to load resource: Origin null is not allowed by Access-Control-Allow-Origin. ([my thing], line 0)
[Error] XMLHttpRequest cannot load https://[mydomain]/[my service]/[my thing]. Origin null is not allowed by Access-Control-Allow-Origin.
答案 0 :(得分:6)
尝试以下解决方案:
在代码中搜索以下行:(可能位于多个文件中,因此请对所有文件都这样做)
WKWebViewConfiguration* configuration = [[WKWebViewConfiguration alloc] init];
并在其后添加以下两行:
[configuration.preferences setValue:@TRUE forKey:@"allowFileAccessFromFileURLs"];
[configuration setValue:@"TRUE" forKey:@"allowUniversalAccessFromFileURLs"];
答案 1 :(得分:1)
@jcesarmobile是正确的。只需将httpProtocol
添加到我的web.config
就不够了。我还必须将以下代码添加到global.asax Application_BeginRequest
:
HttpContext.Current.Response.AddHeader("Access-Control-Allow-Origin", "*")
If HttpContext.Current.Request.HttpMethod.Equals("OPTIONS") Then
HttpContext.Current.Response.AddHeader("Access-Control-Allow-Methods", "POST, PUT, DELETE")
HttpContext.Current.Response.AddHeader("Access-Control-Allow-Headers", "Content-Type, Accept")
HttpContext.Current.Response.AddHeader("Access-Control-Max-Age", "1728000")
HttpContext.Current.Response.End()
End If