我有一个角度方法deleteConfirm:
$scope.deleteConfirm = function(pageIndex) {
var confirmPopup = $ionicPopup.confirm({
title: 'Delete Page',
template: 'Are you sure you want to delete this page?'
});
confirmPopup.then(function(res) {
if(res) {
var permanentStorage = window.localStorage;
var noteBooks = JSON.parse(permanentStorage["noteBooks"]);
noteBooks[noteBookIndex].pages.splice(pageIndex, 1);
permanentStorage["noteBooks"] = JSON.stringify(noteBooks);
}
});
};
我想在调用此函数后重新呈现整个页面。我尝试了reload()方法,但对我而言不起作用。
最佳答案
如果您在Ionic上使用UI-Router,则可以用户关注
$state.go($state.current, {}, {reload: true});
或者,如果仅使用角度路线,请使用以下路线
$route.reload()
关于javascript - Angularjs重新渲染整个页面[ionic],我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/24559219/