我找到了一个 RSS 阅读器,并对其进行了一些更改。它给了我“应用程序错误”。“(文件:///android_assset/www/index.html)”。
我认为原因是它试图下载大量数据,所以它崩溃了。我所做的是这样的:
我从服务器下载了所有的 Javascript 和 CSS,并尝试在本地访问它。但它显示一个空白屏幕。
这给出了上述错误:
<html class="ui-mobile"><head><base href="http://fiddle.jshell.net/_display/"> <meta http-equiv="content-type" content="text/html; charset=UTF-8"> <title>- jsFiddle demo</title> <script type="text/javascript" src="http://code.jquery.com/jquery-1.6.4.js"></script> <link rel="stylesheet" type="text/css" href="/css/result-light.css">
<script type="text/javascript" src="http://code.jquery.com/mobile/1.0.1/jquery.mobile-1.0.1.js"></script>
<script type="text/javascript" src="http://code.jquery.com/jquery-1.6.2.min.js"></script> <link rel="stylesheet" type="text/css" href="http://code.jquery.com/mobile/1.0b2/jquery.mobile-1.0b2.min.css">
<style type="text/css">
而这个给出了空白屏幕:
<html class="ui-mobile"><head><base href="http://fiddle.jshell.net/_display/"> <meta http-equiv="content-type" content="text/html; charset=UTF-8"> <title>- jsFiddle demo</title> <script type="text/javascript" src="jquery-1.6.4.js"></script>
<script type="text/javascript" src="jquery.mobile-1.0.1.js"></script>
<script type="text/javascript" src="jquery-1.6.2.min.js"></script> <link rel="stylesheet" type="text/css" href="jquery.mobile-1.0b2.min.css">
<style type="text/css">