Angular @ViewChild|在html定義並使用物件
除了local reference方法之外,還可以使用@ViewChild來讓取得html的資料。
如果有多個要使用的值,使用@ViewChild應該可以讓程式碼較容易讀?
- 在html命名資料
這裡我取名為nameInput:
1 | <input type="text" #nameInput> |
並設定觸發的function,這裡不需將nameInput傳進去:
1 | <button (click)="onInput()"></button> |
- 在ts設定@ViewChild
1 | import {ElementRef, ViewChild} from '@angular/core'; |
- 可以將資料emit給上層使用
1 | @Output() inputAdded = new EventEmitter<string>(); |