Cordova:无法为我的多页面应用程序

时间:2015-08-11 11:20:06

标签: javascript cordova ionic-framework ionic ubuntu-14.04

我是Cordova的新手。我正在尝试构建一个多页面应用程序。创建项目后,它只有一个index.html文件。我编辑了这个页面并制作了我的第一页。现在我很困惑,如何在该html文件中添加我的第二页。当我点击按钮时,我创建了一个按钮,我需要转到新页面。 我在我的ubuntu系统中使用cordova。我是编程的初学者。谁能告诉我解决问题的方法?我使用cordova + ionic来构建页面,因为我不知道如何使用cordova创建页面。我使用离子框架制作了页面。但不知道如何添加新页面。

<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no, width=device-width">
    <title></title>

    <link href="lib/ionic/css/ionic.css" rel="stylesheet">
    <link href="css/style.css" rel="stylesheet">

    <!-- IF using Sass (run gulp sass first), then uncomment below and remove the CSS includes above
    <link href="css/ionic.app.css" rel="stylesheet">
    -->

    <!-- ionic/angularjs js -->
    <script src="lib/ionic/js/ionic.bundle.js"></script>

    <!-- cordova script (this will be a 404 during development) -->
    <script src="cordova.js"></script>

    <!-- your app's js -->
    <script src="js/app.js"></script>
  </head>
  <body ng-app="starter">

    <ion-pane>
      <ion-header-bar class="bar-stable">
        <h1 class="title">TREASURE HUNT</h1>
      </ion-header-bar>
      <ion-content>
<!--section id="first_page"-->
<div class="list card">
<div class="item item-body">
    <img class="small-image" src="treasurehunt.png" height="200dp" width="fill_parent"><br/>
	
<div class="list">
  <label class="item item-input">
    
    <input type="text" placeholder="Email">                                
  </label>
  <label class="item item-input">
    
    <input type="password" placeholder="Password">
  </label>
</div>
<a class="button icon-right ion-chevron-right button-calm" href="#clients">Login
</a></br></br><a href="#">Sign Up</a></div></div></ion-content>
    </ion-pane>
</body>
</html>

1 个答案:

答案 0 :(得分:0)

您正在使用Ionic框架。他们提供自己的documentation甚至an example of how to create a multi-view app with navigation

下面的旧答案:

  

Cordova与使用非常简单的Linux服务器并没有什么不同。

     

使用锚元素使用相对URL链接到第二页。

<a class="button icon-right ion-chevron-right button-calm" ref="clients.html">Login</a>
                                                                       ^
                                                                       |
                                                                       notice the .html?
     

最重要的是要记住Cordova是一个将HTML / JS / CSS放到移动设备上的工具。

     

在您的应用中添加页面就像在网站上添加页面一样。

     

创建另一个HTML文档并使用锚标记链接到该文档。您需要包含该页面的所有相关脚本和样式。