本文整理汇总了TypeScript中@angular-mdl/core.MdlSnackbarService类的典型用法代码示例。如果您正苦于以下问题:TypeScript MdlSnackbarService类的具体用法?TypeScript MdlSnackbarService怎么用?TypeScript MdlSnackbarService使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了MdlSnackbarService类的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: doReset
doReset(){
if(this.email) {
this.authService.resetPassword(this.email)
.then(()=>{
this.snackbarService.showToast(this.translate.instant("ADMIN.LOGIN.EMAIL_SENT"));
})
.catch((e)=>{
console.error(e.message);
this.snackbarService.showToast(this.translate.instant("ADMIN.LOGIN.ERROR"));
});
} else {
this.snackbarService.showToast(this.translate.instant("ADMIN.LOGIN.NO_EMAIL"));
}
}
示例2:
.catch((e)=>{
console.error(e.message);
this.snackbarService.showToast(this.translate.instant("ADMIN.LOGIN.ERROR"));
});
示例3: onDelete
onDelete(track:TrackModel){
this.jsrolService.deleteTrack(track);
this.snackbarService.showSnackbar({
message: this.translate.instant('ADMIN.TRACK.CONFIRM_DELETE')
});
}