0

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

ご回答いただきありがとうございます。

4

1 に答える 1

0

コントローラーに $state を挿入し、$state.go('[your state name]');UI ルーターのドキュメントを参照してください: http://angular-ui.github.io/ui-router/site/#/api/ui.router.state .$state

于 2016-08-02T10:23:53.860 に答える