我是靠谱客的博主 纯真铃铛,最近开发中收集的这篇文章主要介绍Android Cordova项目报Applcation error the connection to the server was unsuccessful解决方法Cordova Android Applcation error the connection to the server was unsuccessful.(file://androi_assets/www/index.html)核心原因:可能导致的原因:结合本项目中的情况,排查,发现配合代码:,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

Cordova Android Applcation error the connection to the server was unsuccessful.(file://androi_assets/www/index.html)

核心原因:

手机没有及时完成资源文件的加载。

可能导致的原因:

1.代码、数据、图片太大

2.脚本可能有无限循环或较长循环,因此加载时间太长。

3.使用过多的插件、脚本

结合本项目中的情况,排查,发现

1.使用本地的视频播放,视频达70m

修复方法:

放在视频放在服务端,将播放源设置为远程地址而不是本地

2.使用的切图打包到www/static下的图片资源较大,甚至有一个切图达800多k

修复方法:

优化UI资源,可删除的删除,不可删除的对切图进行压缩

3.index.html加载外部的css样式

修复方法:

将外部的css样式下载到本地,项目启动时加载本地css样式

配合代码:

1.延长超时时间

<preference name="loadUrlTimeoutValue" value="700000" />

2.加一个过渡页面

2.1新建mian.html,然后将index.html内容剪切到main.html,在index.html中加载main.html

 <script type="text/javascript">

window.location="./main.html";

  </script>

 

 

 

 

 

 

最后

以上就是纯真铃铛为你收集整理的Android Cordova项目报Applcation error the connection to the server was unsuccessful解决方法Cordova Android Applcation error the connection to the server was unsuccessful.(file://androi_assets/www/index.html)核心原因:可能导致的原因:结合本项目中的情况,排查,发现配合代码:的全部内容,希望文章能够帮你解决Android Cordova项目报Applcation error the connection to the server was unsuccessful解决方法Cordova Android Applcation error the connection to the server was unsuccessful.(file://androi_assets/www/index.html)核心原因:可能导致的原因:结合本项目中的情况,排查,发现配合代码:所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(56)

评论列表共有 0 条评论

立即
投稿
返回
顶部