完成一些教程后,我开始使用自己的Ionic应用程序。我从离子的空白模板开始。我的问题是我的ion-view
(在cards.js中,见下文)根本没有显示在ion-nav-view
内,即我没有获得任何子HTML标记{ {1}}。
我使用了Adam对this question的回答来确保我的路线设置正确,而且我没有收到任何错误,所以我认为它们是。我没有尝试选项卡,只有一个视图。
如果我在我的控制器功能中放置一个断点,那么执行就不会停顿,显然代码根本没有被执行,但是我无法深入了解框架的内容以找出什么'继续。
你知道我在这里错过/做错了吗?
我的代码是:
的index.html
ion-nav-view
app.js
<!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>
<!-- libs-->
<script src="lib/ionic-contrib-tinder-cards/ionic.tdcards.js"></script>
<script src="lib/collide/collide.js"></script>
<!-- your app's js -->
<script src="app/app.js"></script>
<script src="app/controllers/cards.js"></script>
</head>
<body ng-app="myApp">
<ion-nav-view></ion-nav-view>
</body>
</html>
cards.js
angular.module('myApp', ['ionic'])
.run(function($ionicPlatform, $rootScope) {
$ionicPlatform.ready(function() {
// Hide the accessory bar by default (remove this to show the accessory bar above the keyboard
// for form inputs)
if(window.cordova && window.cordova.plugins.Keyboard) {
cordova.plugins.Keyboard.hideKeyboardAccessoryBar(true);
}
if(window.StatusBar) {
StatusBar.styleDefault();
}
});
})
.config(function($stateProvider, $urlRouterProvider){
$stateProvider
.state('cards', {
url: '/cards',
views: {
'cards': {
templateUrl: 'app/views/cards.html',
controller: 'Cards'
}
}
});
$urlRouterProvider.otherwise('/cards');
});
cards.html
angular.module('myApp')
.controller('Cards', function($scope) {
$scope.cards = [
{title: 'Card-1'},
{title: 'Card-2'},
{title: 'Card-3'}
];
});
答案 0 :(得分:2)
我已删除上一篇文章,因为您指出我的回复完全错误。
关于你的路由,这是我的。你觉得那个synthax有什么不同吗?
$urlRouterProvider.otherwise('/');
$stateProvider.state('camera',{
url:"/camera",
cache: false,
controller:"CameraCtrl",
templateUrl:'app/views/loading/index.html'
})
答案 1 :(得分:0)
我认为你打算使用其中一个。 ion-nav-view只是一个行为略有不同的离子视图。
因此,在离子导航视图中放置离子视图类似于在离子视图中放置离子视图,这将无法正确显示。
来自docs:“并记得在示例中用ion-nav-view替换ui-view”
参考: