我为ionic v1创建了一个空白项目,并在 app.js 文件内添加了一个控制器:
angular.module('starter', ['ionic'])
.run(function($ionicPlatform) {
$ionicPlatform.ready(function() {
if (window.cordova && window.Keyboard) {
window.Keyboard.hideKeyboardAccessoryBar(true);
}
if (window.StatusBar) {
StatusBar.styleDefault();
}
});
})
.config(function($stateProvider){
$stateProvider
.state('app', {
url: '/app',
templateUrl: 'main.html',
controller: 'AppCtrl',
})
})
.controller('AppCtrl',function($scope){
console.log("test");
})
我还添加了main.html文件,它只是带有“ TEST”文本的空白文件
执行离子服务命令并导航到http://localhost:8100/#/app控制台命令后,未执行,并且不显示文本。我没有收到错误消息。
更新: 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 rel="manifest" href="manifest.json">
<link href="lib/ionic/css/ionic.css" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">
<script src="lib/ionic/js/ionic.bundle.js"></script>
<script src="cordova.js"></script>
<script src="js/app.js"></script>
</head>
<body ng-app="starter">
<ion-pane>
<ion-header-bar class="bar-stable">
<h1 class="title">Ionic Blank Starter</h1>
</ion-header-bar>
<ion-content name="content">
</ion-content>
</ion-pane>
</body>
</html>
更新:找到了解决方案
index.html缺少ion-nav-view标签
<body ng-app="starter">
<ion-nav-view></ion-nav-view>
</body>
添加了它,一切开始起作用。
答案 0 :(得分:1)
找到了解决方案 index.html缺少ion-nav-view标签
<body ng-app="starter">
<ion-nav-view></ion-nav-view>
</body>
添加了它,一切开始起作用。