我也是Ionic和Angular UI的新手。我正在尝试使用模板在我的Ionic应用程序中加载我的第一页。我的文件夹结构如下。
我想使用我的index.html
作为我所有模板的容器。我正在尝试使用list.html
作为模板,在我的应用首次加载时加载到index.html
。我尝试了下面的代码而且卡住了。
.config(function($urlRouterProvider, $stateProvider){
$stateProvider
.state('index', {
url: '/',
abstract: true,
templateUrl: 'index.html'
})
.state('index.list', {
url: '/list',
views: {
'list-index' : {
templateUrl: 'list.html',
controller: 'ListCtrl'
}
}
})
$urlRouterProvider.otherwise('/list');
})
我的index.html
只有一个
身体标签内的<ion-nav-view name='list-index'></ion-nav-view>
。
list.html
有一些代码通过使用conotroller ListCtrl
获取一些JSON内容来加载列表。
应用加载空白。
我需要指出正确的方向。我认为我太接近正确的解决方案了。任何帮助都非常感谢。感谢。
添加index.html
<!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="lib/ngCordova/dist/ng-cordova.js"></script>
<script src="cordova.js"></script>
<script type="text/javascript" src="http://www.parsecdn.com/js/parse-1.4.2.min.js"></script>
<!-- your app's js -->
<script src="js/app.js"></script>
</head>
<body ng-app="starter">
<ion-nav-view name='list-index'></ion-nav-view>
</body>
</html>
指向app.js
- http://codepen.io/anon/pen/RPVJao
答案 0 :(得分:0)
您能否描述您的离子应用程序目录结构。
应该是:
PROJECT
- hooks
- platforms
- www
- js <=== this dir includes all your js in ionic structure.
- templates/ <== this is a dir that includes all html templates in ionic structure
- index.html <== THIS IS THE STARTING POINT OF YOUR PROJECT, CONTAINING angularJS script and ng-app for exemple
进入您的模板目录,您可以拥有“index.html&amp; list.html”
但是这会将您的路由更新为:
$stateProvider
.state('index', {
url: '/',
abstract: true,
templateUrl: 'templates/index.html'
})
.state('index.list', {
url: '/list',
views: {
'list-index' : {
templateUrl: 'templates/list.html',
controller: 'ListCtrl'
}
}
})
如果你将templateURl保持为templateUrl: 'index.html'
那么,我认为你将与你的主要index.html发生冲突....糟糕的主意。