angular4订阅了一项网络服务

时间:2017-09-05 09:13:05

标签: angular web-services rxjs google-custom-search

我有一个Web服务,在Angular4中调用Google Custom Search API(使用Observable),我在我的组件中调用它(通过Observer和mergemap运算符)。整个功能还涉及Material Design md-input和ng-ngx-bootstrap Typeahead。 一切都在OnInit完成,每次打开/刷新页面时,都会触发我的Google搜索服务调用,并带有空查询。 仅当string作为参数传递时,如何才能触发对我的搜索服务的调用?我是Angular4和RxJS Observable的新手,我的代码可能不完全正确,所以我愿意接受评论/想法/建议。

组件:

public value = '';
public dataSource: Observable<any>;
public subs: Subscription;

constructor(private searchService: SearchService) { }

ngOnInit() {
  this.dataSource = Observable
    .create((observer: Observer<any>) => {
      observer.next(this.value);
      observer.complete();
    })
    .mergeMap((token: string) => this.searchService.getSearch(this.value));
  this.subs = this.dataSource.subscribe(x => console.log(x));
}

模板:

<md-input-container class="w-75">
  <input mdInput [(ngModel)]="value"
    [typeahead]="dataSource"
    (typeaheadLoading)="changeTypeaheadLoading($event)"
    (typeaheadNoResults)="changeTypeaheadNoResults($event)"
    (typeaheadOnSelect)="typeaheadOnSelect($event)"
    typeaheadOptionsLimit="10"
    typeaheadOptionField="title"
    typeaheadWaitMs="250"
    typeaheadMinLength="3"
    [typeaheadItemTemplate]="customItemTemplate"
    placeholder="Entrez votre recherche ici">
  <span *ngIf="typeaheadLoading===true"><i class="fa fa-circle-o-notch fa-spin fa-fw"></i></span>
  <div *ngIf="typeaheadNoResults===true">
    <i class="fa fa-times-circle-o" aria-hidden="true"></i> Aucun résultat.
  </div>
  <md-hint align="end">rechercher dans la sphère éducative</md-hint>
</md-input-container>
<button type="submit" [routerLink]="resultUrl()" md-mini-fab><i class="fa fa-search"></i></button>

1 个答案:

答案 0 :(得分:0)

替换行

.mergeMap((token: string) => this.searchService.getSearch(this.value));

.mergeMap((token: string) => token ? this.searchService.getSearch(this.value) : Observable.of([]));

因此,只有在存在任何令牌或搜索词时才会调用您的服务,否则您将返回一个空数组