Ich habe eine Alarm-Funktion in controller.js:Wie kann ich zu einer anderen Vorlage umleiten, wenn die Schaltfläche zum Senden in Alert Ionic Framework gedrückt wird?
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!');
}
});
};
Wie kann ich zu einer anderen Vorlage, wenn drückt Submit-Button in if (res) {} umleiten?
Vielen Dank für Ihre Antwort!
Sie state.go $ verwenden ("state); – Anita