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){} で送信ボタンを押したときに別のテンプレートにリダイレクトするにはどうすればよいですか?
ご回答いただきありがとうございます。