我是一只有角色的新蜜蜂。我正在尝试编写一个验证,当用户尝试关闭浏览器窗口时会提醒用户。
我的页面v1和v2上有2个链接。当点击指向特定页面的链接时。 以下是重定向到v1和v2的代码
angular.module('myApp', ['myApp.filters', 'myApp.services', 'myApp.directives'])
.config(['$routeProvider', function($routeProvider) {
$routeProvider.when('/v1', {templateUrl: 'pages/v_1.html', controller: MyCtrl1});
$routeProvider.when('/v2', {templateUrl: 'pages/v_2.html', controller: MyCtrl2});
$routeProvider.otherwise({redirectTo: '/v1'});
}]);
当用户点击v1“他即将离开v1,如果他希望继续”并且点击v2时,我想弹出一条消息。 关于如何实现这一点的任何指示都将不胜感激。
我得到了一个答案here,但它会在每个时间间隔后弹出消息。
更新了代码;
控制器
function MyCtrl1() {
$scope.$on('$locationChangeStart', function (event, next, current) {
if ('your condition') {
event.preventDefault();
MessageService.showConfirmation(
'Are you sure?',
MessageService.MessageOptions.YES_NO, {
'YES': function () {
blockNavigation = false;
$location.url($location.url(next).hash());
$rootScope.$apply();
},
'NO': function () {
MessageService.clear();
$log.log('NO Selected')
}
});
}
});
}
MyCtrl1.$inject = [];
function MyCtrl2() {}
MyCtrl2.$inject = [];
答案 0 :(得分:105)
确认对话的代码可以这样写得更短:
$scope.$on('$locationChangeStart', function( event ) {
var answer = confirm("Are you sure you want to leave this page?")
if (!answer) {
event.preventDefault();
}
});
答案 1 :(得分:43)
让我们分开你的问题,你要问两件事:
1
我正在尝试编写一个验证,在用户尝试时提醒用户 关闭浏览器窗口。
2
当用户点击v1时,我想弹出一条消息“他是关于 离开v1,如果他希望继续“和点击相同 V2
对于第一个问题,请这样做:
window.onbeforeunload = function (event) {
var message = 'Sure you want to leave?';
if (typeof event == 'undefined') {
event = window.event;
}
if (event) {
event.returnValue = message;
}
return message;
}
对于第二个问题,请这样做:
您应该处理$locationChangeStart
事件以便查看转换事件,因此请使用此代码来处理控制器中的转换验证:
function MyCtrl1($scope) {
$scope.$on('$locationChangeStart', function(event) {
var answer = confirm("Are you sure you want to leave this page?")
if (!answer) {
event.preventDefault();
}
});
}
答案 2 :(得分:22)
这是我使用的指令。它在表单卸载时自动清理。如果您想阻止提示被触发(例如,因为您已成功保存表单),请调用$ scope.FORMNAME。$ setPristine(),其中FORMNAME是您要阻止提示的表单的名称。
.directive('dirtyTracking', [function () {
return {
restrict: 'A',
link: function ($scope, $element, $attrs) {
function isDirty() {
var formObj = $scope[$element.attr('name')];
return formObj && formObj.$pristine === false;
}
function areYouSurePrompt() {
if (isDirty()) {
return 'You have unsaved changes. Are you sure you want to leave this page?';
}
}
window.addEventListener('beforeunload', areYouSurePrompt);
$element.bind("$destroy", function () {
window.removeEventListener('beforeunload', areYouSurePrompt);
});
$scope.$on('$locationChangeStart', function (event) {
var prompt = areYouSurePrompt();
if (!event.defaultPrevented && prompt && !confirm(prompt)) {
event.preventDefault();
}
});
}
};
}]);
答案 3 :(得分:9)
正如您在上面发现的那样,您可以使用window.onbeforeunload
和$locationChangeStart
的组合向用户发送消息。此外,您可以使用ngForm.$dirty
仅在用户进行更改时向用户发送消息。
我编写了一个angularjs指令,您可以将其应用于任何会自动监视更改的表单,并在用户重新加载页面或离开时向用户发送消息。 @see https://github.com/facultymatt/angular-unsavedChanges
希望你发现这个指令很有用!
答案 4 :(得分:2)
此处的其他示例适用于旧版本的ui-router(> = 0.3.x),但所有状态事件(例如$stateChangeStart
)均为deprecated as of 1.0。新的ui-router 1.0代码使用$transitions service。因此,您需要将$transitions
注入组件,然后使用$transitions.onBefore方法,如下面的代码所示。
$transitions.onBefore({}, function(transition) { return confirm("Are you sure you want to leave this page?"); });
这只是一个非常简单的例子。 $transitions
服务可以接受更复杂的响应,例如promises。有关详细信息,请参阅HookResult type。
答案 5 :(得分:-1)
$scope.rtGo = function(){
$window.sessionStorage.removeItem('message');
$window.sessionStorage.removeItem('status');
}
$scope.init = function () {
$window.sessionStorage.removeItem('message');
$window.sessionStorage.removeItem('status');
};
重新加载页面:使用init