我有一个角度方法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()方法,但它对我没用。
答案 0 :(得分:2)
如果您在Ionic上使用UI-Router
,则可以使用以下用户 $state.go($state.current, {}, {reload: true});
或者如果您只使用Angular Routes,请使用follwoing
$route.reload()