Angular-material7-form-field

提供:Dev Guides
移動先:案内検索

角度材料7-フォームフィールド

Angular Directiveである <mat-form-field> は、角度コンポーネントのラッパーを作成するために使用され、下線、太字、ヒントなどのテキストスタイルを適用するために使用されます。

次の角度成分は <mat-form-field> 内で使用できます。

  • <入力matNativeControl>
  • <textarea matNativeControl>
  • <matNativeControlを選択>
  • <mat-select>
  • <mat-chip-list>

この章では、Angular Materialでmat-form-fieldコントロールを使用するために必要な構成を紹介します。

角度アプリケーションを作成する

次の手順に従って、_Angular 6-Project Setup_章で作成したAngularアプリケーションを更新します-

Step Description
1 Create a project with a name materialApp as explained in the Angular 6 - Project Setup chapter.
2 Modify app.module.ts, app.component.ts, app.component.css and app.componentl as explained below. Keep rest of the files unchanged.
3 Compile and run the application to verify the result of the implemented logic.

変更されたモジュール記述子 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 {MatInputModule,MatOptionModule, MatSelectModule, MatIconModule} from '@angular/material'
import {FormsModule, ReactiveFormsModule} from '@angular/forms';
@NgModule({
   declarations: [
      AppComponent
   ],
   imports: [
      BrowserModule,
      BrowserAnimationsModule,
      MatInputModule,MatOptionModule, MatSelectModule, MatIconModule,
      FormsModule,
      ReactiveFormsModule
   ],
   providers: [],
   bootstrap: [AppComponent]
})
export class AppModule { }

変更されたCSSファイル app.component.css の内容は次のとおりです。

.tp-container {
   display: flex;
   flex-direction: column;
}
.tp-container > * {
   width: 100%;
}

以下は、変更されたHTMLホストファイル app.componentl の内容です。

<div class = "tp-container">
   <mat-form-field appearance = "standard">
      <input matInput placeholder = "Input">
      <mat-icon matSuffix>sentiment_very_satisfied</mat-icon>
      <mat-hint>Sample Hint</mat-hint>
   </mat-form-field>
   <mat-form-field appearance = "fill">
      <textarea matInput placeholder = "Textarea"></textarea>
   </mat-form-field>
   <mat-form-field appearance = "outline">
      <mat-select placeholder = "Select">
         <mat-option value = "A">A</mat-option>
         <mat-option value = "B">B</mat-option>
         <mat-option value = "C">C</mat-option>
      </mat-select>
   </mat-form-field>
</div>

結果

結果を確認します。

フォームフィールド

詳細

  • 最初に、mat-form-field wrapperを使用してフォームフィールドを作成しました。 外観属性を使用してフォームフィールドの外観を変更しました。
  • 次に、フォームコントロールがフォームフィールドに追加されます。