Android WebView不能加载ajax?加载ajax无效?
Android WebView不能加载ajax?加载ajax无效?
!苹果或高版本的安卓webview可能会有跨域被拦截的问题,需要在服务端允许跨域。 另外高版本的webview注意使用HTTPS协议的请求,普通http将会被拦截 php示例代码:
header('content-type:application:json;charset=utf8');
header('Access-Control-Allow-Origin:*'); // 被允许的访问来源
header('Access-Control-Allow-Methods:POST');
header('Access-Control-Allow-Headers:x-requested-with,content-type');
1、WebView的支持js是否打开; webSettings.setJavaScriptEnabled(true);
2、webView拓展的api是否打开: webSettings.setDomStorageEnabled(true);
最近回复