我正在尝试创建一个可重用的搜索框组件,目前我的设置是这样。
search.component.html
<div class="search-box-container">
<fa-icon class="search-icon" [icon]="faSearch"></fa-icon>
<input type="search" name="search" class="search-box" autocomplete="off" />
</div>
search.component.ts
import { Component, OnInit } from '@angular/core';
import { faSearch } from '@fortawesome/free-solid-svg-icons'
@Component({
selector: 'app-search',
templateUrl: './search.component.html',
styleUrls: ['./search.component.scss']
})
export class SearchComponent implements OnInit {
faSearch = faSearch;
constructor() { }
ngOnInit() {
}
}
并且我想在多个组件之间使用它:
<app-search [ngModel]="searchString" (onUpdate)="updateSearch"></app-search>
我的问题是如何访问结构化组件内部主要组件中的父ngModel和onUpdate集。
答案 0 :(得分:0)
根据@Stanisalv在评论中回答:
在主组件中,您只需使用
@Output
装饰器绑定到搜索组件的公共属性即可。