在 Alert Ionic Framework 中按下提交按钮时,如何重定向到另一个模板?
How can I redirect to another template when the submit button is pressed in Alert Ionic Framework?
我在controller.js中有提醒功能:
function showAlertFinishedTest() {
var confirmPopup = $ionicPopup.confirm({
title: 'Finished',
scope: $scope,
template: 'Are you sure to submit the result?'
});
confirmPopup.then(function(res) {
if (res) {
console.log('Submit file json!');
} else {
console.log('Get back to the test!');
}
});
};
如何在 if(res){} 中按下提交按钮时重定向到另一个模板?
感谢大家的回答!
将 $state 注入控制器并使用 $state.go('[your state name]');
请在此处查看 UI 路由器的文档:http://angular-ui.github.io/ui-router/site/#/api/ui.router.state.$state
我在controller.js中有提醒功能:
function showAlertFinishedTest() {
var confirmPopup = $ionicPopup.confirm({
title: 'Finished',
scope: $scope,
template: 'Are you sure to submit the result?'
});
confirmPopup.then(function(res) {
if (res) {
console.log('Submit file json!');
} else {
console.log('Get back to the test!');
}
});
};
如何在 if(res){} 中按下提交按钮时重定向到另一个模板?
感谢大家的回答!
将 $state 注入控制器并使用 $state.go('[your state name]');
请在此处查看 UI 路由器的文档:http://angular-ui.github.io/ui-router/site/#/api/ui.router.state.$state