如何设置Cordova配置?

时间:2017-03-09 12:52:35

标签: javascript cordova url-routing

当我通过Cordova构建应用程序时,例如浏览器:“cordova运行浏览器”我得到一个空白页“未找到”,地址栏中的路径如下:

  

localhost:8000 / index.html

但是如果我从地址栏中删除index.html并且地址栏是一个 localhost:8000/一切都很完美 我尝试在config cordova中更改src属性的字符串 - 我写了空字符串。从一开始,一切都完美无缺。 但是,当我通过cordova运行Android版本时 - 这种情况不再有效,我收到错误“Page not found”。在这种情况下,这个问题的解决方案是什么?

我已经index.html

<head>
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
  <meta http-equiv="X-UA-Compatible" content="IE=edge">
  <meta name="viewport" content="width=device-width, initial-scale=1,     maximum-scale=1, user-scalable=no"/>
  <meta name="description" content="Use Ionic with React"/>
  <title>Reactionic React Ionic</title></head>
  <link rel="stylesheet" type="text/css" href="style/index.css">
  <link rel="stylesheet" type="text/css" href="style/fonts.css">
<body>
  <div id="app"></div>
  <script src="index.js"></script>
</body>

但我希望我的应用可以在手机上使用地址栏运行:localhost:8000 /没有index.html

0 个答案:

没有答案