这是我的代码:
$ stateProvider
.state('tabs', {
url: '/tabs',
abstract: true,
templateUrl: 'templates/tabs.html'
})
.state('tabs.personal', {
url: '/personal',
views: {
'personalGoals': {
templateUrl: 'templates/personalGoals.html',
controller: 'personalCtrl'
}
}
});
// if none of the above states are matched, use this as the fallback
$urlRouterProvider.otherwise('/tabs/personal');
除了标签外,屏幕都是白色的,当在离子服务器中运行时虽然我从标签模板中复制粘贴的代码(我用空白来从头学习)...
我有模板/ tabs.html,templates / personalGoals.html作为渲染所需的一些文件......