Angular Material 7 - SnackBar
<MatSnackBar>Angular Directive ใช้เพื่อแสดงแถบการแจ้งเตือนที่จะแสดงบนอุปกรณ์มือถือเป็นทางเลือกของกล่องโต้ตอบ / ป๊อปอัป
ในบทนี้เราจะแสดงการกำหนดค่าที่จำเป็นในการแสดงสแน็กบาร์โดยใช้วัสดุเชิงมุม
ต่อไปนี้เป็นเนื้อหาของตัวอธิบายโมดูลที่แก้ไข app.module.ts.
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { AppComponent } from './app.component';
import {BrowserAnimationsModule} from '@angular/platform-browser/animations';
import {MatButtonModule,MatSnackBarModule} from '@angular/material'
import {FormsModule, ReactiveFormsModule} from '@angular/forms';
@NgModule({
declarations: [
AppComponent
],
imports: [
BrowserModule,
BrowserAnimationsModule,
MatButtonModule,MatSnackBarModule,
FormsModule,
ReactiveFormsModule
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }
ต่อไปนี้เป็นเนื้อหาของไฟล์โฮสต์ HTML ที่แก้ไข app.component.html.
<button mat-button (click)="openSnackBar('Party', 'act')">Show snack-bar</button>
ต่อไปนี้เป็นเนื้อหาของไฟล์ ts ที่แก้ไข app.component.ts.
import {Component, Injectable} from '@angular/core';
import { MatSnackBar } from "@angular/material";
@Component({
selector: 'app-root',
templateUrl: 'app.component.html',
styleUrls: ['app.component.css']
})
export class AppComponent {
constructor(public snackBar: MatSnackBar) {}
openSnackBar(message: string, action: string) {
this.snackBar.open(message, action, {
duration: 2000,
});
}
}
ผลลัพธ์
ตรวจสอบผลลัพธ์
รายละเอียด
- ที่นี่เราได้สร้างปุ่มโดยใช้ปุ่มเสื่อเมื่อคลิกซึ่งเราจะแสดงแถบสแน็กบาร์