AngularJs - 如何取消路线更改事件

时间:2017-05-04 09:14:53

标签: angularjs

您好我正在使用以下代码停止导航警告弹出路由

$scope.$on('$routeChangeStart', function (event, newUrl, oldUrl) {
        if (!$window.confirm('Are you sure you want to leave this view?')) {

            event.preventDefault();
        }
})

但event.preventDefault()对我不起作用。在导航弹出窗口的取消按钮上仍然将我路由到新的URL。请帮帮我

0 个答案:

没有答案