📜  角材料中的MatSnackBar

📅  最后修改于: 2021-05-13 18:43:42             🧑  作者: Mango

Angular Material是Angular团队开发的一个UI组件库,用于为台式机和移动Web应用程序构建设计组件。为了安装它,我们需要在项目中安装angular,一旦完成,您可以输入以下命令并下载它。 MatSnackBar用于在执行任何操作时从屏幕底部显示信息或文本。

安装语法:

ng add @angular/material

方法:

  • 首先,使用上述命令安装角材。
  • 完成安装后,从app.module.ts文件中的’@ angular / material / snack-bar’导入’MatSnackBarModule’。
  • 首先,我们需要为“ MatSnackBar”创建一个实例。然后,我们需要在单击按钮时调用一个函数。
  • 使用此实例,我们可以访问内置的open()函数。
  • 现在我们需要提及消息的持续时间。
  • 完成上述步骤后,即可服务或启动项目。

代码实现:

app.module.ts
import { NgModule } from '@angular/core';  
import { BrowserModule } from '@angular/platform-browser';  
import { FormsModule } from '@angular/forms';  
        
import { AppComponent } from './app.component';  
import { BrowserAnimationsModule } from  
    '@angular/platform-browser/animations'; 
import {MatSnackBarModule} from '@angular/material/snack-bar';
import { MatButtonModule } from '@angular/material/button';  
    
@NgModule({  
    imports: [  
        BrowserModule,  
        FormsModule,  
        MatButtonModule, 
        MatSnackBarModule, 
        BrowserAnimationsModule 
    ],  
    declarations: [ AppComponent ],  
    bootstrap: [ AppComponent ]  
})  
export class AppModule { }


app.component.ts
import { Component } from '@angular/core';
import {MatSnackBar} from '@angular/material/snack-bar';
  
  
@Component({
  selector: 'my-app',
  templateUrl: './app.component.html',
  styleUrls: [ './app.component.css' ]
})
export class AppComponent  {
  
  constructor(private _snackBar: MatSnackBar) {}
  
  openSnackBar(message: string, action: string) {
    this._snackBar.open(message, action, {
      duration: 2000,
    });
  }
}


HTML

  

    By Clicking on above button we can invoke      the function and it will, render the      message of snack-bar


app.component.ts

import { Component } from '@angular/core';
import {MatSnackBar} from '@angular/material/snack-bar';
  
  
@Component({
  selector: 'my-app',
  templateUrl: './app.component.html',
  styleUrls: [ './app.component.css' ]
})
export class AppComponent  {
  
  constructor(private _snackBar: MatSnackBar) {}
  
  openSnackBar(message: string, action: string) {
    this._snackBar.open(message, action, {
      duration: 2000,
    });
  }
}

app.component.html:

的HTML


  

    By Clicking on above button we can invoke      the function and it will, render the      message of snack-bar

输出: