Angular 8 - Angular Material



Angular Material 提供了大量基于 Material Design 的高质量、现成的 Angular 组件。让我们学习如何在 Angular 应用中引入 Angular Material 以及如何使用其组件。

配置 Angular Material

让我们看看如何在 Angular 应用中配置 Angular Material。

打开命令提示符并进入项目根目录。

cd /go/to/expense-manager

使用以下命令添加 Angular Material 包:

ng add @angular/material

Angular CLI 会询问一些关于主题、手势识别和浏览器动画的问题。选择您喜欢的任何主题,然后对手势识别和浏览器动画确认选择。

Installing packages for tooling via npm.
Installed packages for tooling via npm.
Choose a prebuilt theme name, or "custom" for a custom theme: Indigo/Pink        [ Preview: https://material.angular.i
o?theme=indigo-pink ]
Set up HammerJS for gesture recognition? Yes
Set up browser animations for Angular Material? Yes

Angular Material 将每个 UI 组件打包在一个单独的模块中。通过根模块 (src/app/app.module.ts) 将所有必要的模块导入到应用程序中。

import { MatTableModule } from '@angular/material/table';
import { MatButtonModule } from '@angular/material/button';
import { MatIconModule } from '@angular/material/icon';

@NgModule({
  imports: [
    MatTableModule,
    MatButtonModule,
    MatIconModule
  ]
})

使用 ExpenseEntryListComponent 模板 (src/app/expense-entry-list/expense-entry-list.component.html) 更改编辑按钮,如下所示:

<div class="col-sm" style="text-align: right;">
    <!-- <button type="button" class="btn btn-primary">Edit</button> -->
    <button mat-raised-button color="primary">Edit</button> 
</div>

运行应用程序并测试页面。

ng serve

应用程序的输出如下:

Configure Angular

在这里,应用程序清楚地显示了 Angular Material 按钮。

工作示例

Angular Material 包提供的一些重要的 UI 元素。

  • 表单字段
  • 输入框
  • 复选框
  • 单选按钮
  • 选择框
  • 按钮
  • 日期选择器
  • 列表
  • 卡片
  • 网格列表
  • 表格
  • 分页器
  • 标签页
  • 工具栏
  • 菜单
  • 对话框
  • Snackbar
  • 进度条
  • 图标
  • 分隔线

使用 Material 组件非常简单,我们将通过一个示例项目学习其中一个常用的 Material 组件,**Material 表格**。

打开命令提示符并进入项目根目录。

ng add @angular/material

让我们修改我们的 **ExpenseEntryListComponent** (src/app/expense-entry-list/expense-entry-list.component.ts) 并使用 Material 表格组件。

声明一个变量 displayedColumns 并为其赋值要显示的列列表。

displayedColumns: string[] = ['item', 'amount', 'category', 'location', 'spendOn' ];

在 **ExpenseEntryListComponent** 模板 (src/app/expense-entry-list/expense-entry-list.component.html) 中添加 Material 表格,如下所示,并删除我们现有的列表。

<div class="mat-elevation-z8">
   <table mat-table [dataSource]="expenseEntries"> 
      <ng-container matColumnDef="item">
         <th mat-header-cell *matHeaderCellDef> Item </th>
         <td mat-cell *matCellDef="let element" style="text-align: left"> {{element.item}} </td>
      </ng-container>

      <ng-container matColumnDef="amount">
         <th mat-header-cell *matHeaderCellDef > Amount </th>
         <td mat-cell *matCellDef="let element" style="text-align: left"> {{element.amount}} </td>
      </ng-container>

      <ng-container matColumnDef="category">
         <th mat-header-cell *matHeaderCellDef> Category </th>
         <td mat-cell *matCellDef="let element" style="text-align: left"> {{element.category}} </td>
      </ng-container>

      <ng-container matColumnDef="location">
         <th mat-header-cell *matHeaderCellDef> Location </th>
         <td mat-cell *matCellDef="let element" style="text-align:left"> {{element.location}} </td>
      </ng-container>

      <ng-container matColumnDef="spendOn">
         <th mat-header-cell *matHeaderCellDef> Spend On </th>
         <td mat-cell *matCellDef="let element" style="text-align: left"> {{element.spendOn}} </td>
      </ng-container>

      <tr mat-header-row *matHeaderRowDef="displayedColumns"></tr>
      <tr mat-row *matRowDef="let row; columns: displayedColumns;"></tr>
   </table>
</div>

这里,

  • mat-table 属性用于将普通表格转换为 Material 表格。

  • [dataSource] 属性用于指定表格的数据源。

  • Material 表格是基于模板的,每列可以使用单独的模板进行设计。ng-container 用于创建模板。

  • matColumnDef 用于指定应用于特定 ng-container 的数据源的列。

  • mat-header-cell 用于指定每列的标题文本。

  • mat-cell 用于指定每列的内容。

  • mat-header-row 和 mat-row 用于指定列在行中的顺序。

  • 我们只使用了 Material 表格的基本功能。Material 表格还有许多其他功能,例如排序、分页等。

运行应用程序。

ng serve

应用程序的输出如下:

Configure Angular
广告