从父级更新子组件

时间:2016-12-28 11:10:40

标签: angular

layoutcomponent中我是父母我有表格。在提交时,我正在从搜索组件中的router-outlet重定向子组件。那是我的提交

onSubmit({ value }: {
    value: Search
}) {
    this.sharedData.searchStr = value.Search;

    let urlSegments = this.router.url.split('/');

    let lang = urlSegments[1];

    let url = lang + '/search';
    this.router.navigateByUrl(url);


    this.searchval.reset();
}

我有共享服务,并且有接口as suggested here,它可以工作。

import { Injectable, Inject } from '@angular/core';
export interface ISharedModel {
    searchStr: string;
}
@Injectable()
export class SearchService {

    sharedComponent: ISharedModel = {
      searchStr: ''
    };

    constructor() { }
}
子组件中的

我有ngOnInit

ngOnInit() {
    this.sharedData = this.sharedResource.sharedComponent;

    this.searchval = new FormGroup({
        Search: new FormControl(this.sharedData.searchStr)
    });
}

它有html页面

 <form (ngSubmit)="onSubmit(searchval)" [formGroup]="searchval" >
      <input type="text" placeholder="enter search string" formControlName="Search" class="form-control">
      <button class="btn btn-primary">search</button>
 </form>

因此,重定向应用程序会填充此文本框。 当它已经在`mydomain.com/en/search'并且我在父组件中输入搜索字符串时,它不会更新我的子组件。

我该怎么办?

1 个答案:

答案 0 :(得分:6)

您可以使用共享服务,但您也可以跳过它并执行以下操作:

您的ChildComponent中的

声明String Subject

public static yourString: Subject<String> = new Subject<string>();
在您的ChildComponent构造函数中

YourChildComponent.yourString.subscribe(res => {
    this.searchval.patchValue({Search: res})
});

并在您的父级中,例如keyup - 方法:

updateValue(value) {
   YourChildComponent.yourString.next(yourUpdated value here)
}