本文整理汇总了TypeScript中@angular/material/snack-bar.MatSnackBar类的典型用法代码示例。如果您正苦于以下问题:TypeScript MatSnackBar类的具体用法?TypeScript MatSnackBar怎么用?TypeScript MatSnackBar使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了MatSnackBar类的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1:
.catch(() => {
this.snackBar.open('Error en inicio de sesiรณn, ยกIntentemoslo otra vez!'
, null
, {
duration: 4000
});
});
示例2:
() => {
this.refresh();
this.snackBar.open('Record removed successfully!', 'X', {
duration: 3000,
verticalPosition: 'top',
horizontalPosition: 'center'
});
},
示例3: play
play(list: string) {
this._snackbar.open(`Playing "${list}"`, '', {duration: 1000});
}
示例4: save
save(project) {
this.snackBar.open('Item successfully saved!!!', null, {
duration: 2000,
});
this.router.navigate(['result']);
}
示例5:
error => this.snackBar.open(error.toString()),
示例6: openSnackBar
openSnackBar(message: string, action: string) {
this._snackBar.open(message, action, {
duration: 2000,
});
}