在我的离子应用程序中,我想为我使用$ ionicHistory实现后退按钮功能
in js file
$scope.goBack = function() {
$ionicHistory.goBack();
// window.history.go(-1);
};

in html
ng-click=goBack();

回去的时候,我看不到完整的视图页面。它是所请求页面的一半(50%)。任何人都可以帮我这个吗?
任何帮助,我将不胜感激。
先谢谢!!
答案 0 :(得分:1)
我做了很少的改变我的工作正常。
.state('app.profile', {
cache: false,// disabled cache
url: './profile',
views: {
'menuContent': {
// templateUrl: 'templates/profile.html',
templateUrl: 'templates/profile.html',
controller: 'ProfileCtrl'
},
'fabContent': {
template: ''
}
}
})
in my controller
setTimeout(
function()
{ $scope.goBack = function() {
console.log('Going back');
$ionicHistory.goBack();
// window.history.go(-1);
};
}, 2000);
全部谢谢