为什么 AlertifyJS 确认不能使用 Angular 8
Why AlertifyJS confirm is not working with Angular 8
我已经在我的 Angular 应用程序中正确设置了 AlertJS,它对我的成功、错误和警报很有帮助。但是,我设置确认方法的方式无法正常工作。
这是我的 AlertJS 服务的实现
confirm(title: string, message: string, okCallback: () => any, cancelCallback: () => any) {
alertify.confirm(title, message, (e: any) => {
if (e.button.text === 'OK') {
okCallback();
} else {
cancelCallback();
}
});
}
success(message: string) {
alertify.success(message);
}
error(message: string) {
alertify.error(message);
}
warning(message: string) {
alertify.warning(message);
}
message(message: string) {
alertify.message(message);
}
alert(title: string, message: string, movable: boolean) {
alertify.alert(title, message).set('movable', movable);
}
在我的组件中,我调用 AlertifyJS 的确认方法如下:
this.alertify.confirm('Success!',
'Secret questions/answers have been saved!, would you like to setup a new password?',
() => {
this.isActive = false;
this.isCreateNewPassword = true;
},
() => {
this.router.navigate(['/registrations']);
});
未正确填充标题。相反,它保留默认值并将 'Success' 作为我的消息。
当我从实现和调用中删除作为参数的标题时,确认会按预期工作!
知道如何解决这个问题吗?
confirm 方法的实现应该是这样的
confirm(title: string, message: string, okCallback: () => any, cancelCallback: () => any) {
alertify.confirm(title, message, () => { okCallback(); }
, () => { cancelCallback(); });
}
我已经在我的 Angular 应用程序中正确设置了 AlertJS,它对我的成功、错误和警报很有帮助。但是,我设置确认方法的方式无法正常工作。
这是我的 AlertJS 服务的实现
confirm(title: string, message: string, okCallback: () => any, cancelCallback: () => any) {
alertify.confirm(title, message, (e: any) => {
if (e.button.text === 'OK') {
okCallback();
} else {
cancelCallback();
}
});
}
success(message: string) {
alertify.success(message);
}
error(message: string) {
alertify.error(message);
}
warning(message: string) {
alertify.warning(message);
}
message(message: string) {
alertify.message(message);
}
alert(title: string, message: string, movable: boolean) {
alertify.alert(title, message).set('movable', movable);
}
在我的组件中,我调用 AlertifyJS 的确认方法如下:
this.alertify.confirm('Success!',
'Secret questions/answers have been saved!, would you like to setup a new password?',
() => {
this.isActive = false;
this.isCreateNewPassword = true;
},
() => {
this.router.navigate(['/registrations']);
});
未正确填充标题。相反,它保留默认值并将 'Success' 作为我的消息。
当我从实现和调用中删除作为参数的标题时,确认会按预期工作!
知道如何解决这个问题吗?
confirm 方法的实现应该是这样的
confirm(title: string, message: string, okCallback: () => any, cancelCallback: () => any) {
alertify.confirm(title, message, () => { okCallback(); }
, () => { cancelCallback(); });
}