在Angular 7中创建一个单元格下拉菜单可以使用Angular Material库中的MatSelect
组件。下面是一个示例代码:
npm install @angular/material @angular/cdk @angular/animations
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
import { MatSelectModule } from '@angular/material/select';
import { AppComponent } from './app.component';
@NgModule({
declarations: [AppComponent],
imports: [BrowserModule, BrowserAnimationsModule, MatSelectModule],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule {}
选择选项
{{ option }}
import { Component } from '@angular/core';
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.css']
})
export class AppComponent {
options = ['选项1', '选项2', '选项3'];
}
现在运行应用程序,您将看到一个包含下拉菜单的单元格。当您选择一个选项时,它将显示在选择框中。
上一篇:Angular 7中处理WebSocket的Subject <MessageEvent>
下一篇:Angular 7中的"ExpressionChangedAfterItHasBeenCheckedError"错误,可以翻译为"在检查后更改了表达式错误"。