第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

獲取多個(gè)動(dòng)態(tài)添加的材質(zhì)自動(dòng)完成輸入以在 valueChange 上調(diào)用相同的方法

獲取多個(gè)動(dòng)態(tài)添加的材質(zhì)自動(dòng)完成輸入以在 valueChange 上調(diào)用相同的方法

慕妹3242003 2022-10-08 16:03:43
我有一個(gè)頁面,用戶可以在其中輸入并從自動(dòng)完成中選擇一個(gè)地址。自動(dòng)完成的來源來自于使用 valueChanges 事件調(diào)用的外部 API。結(jié)果行為是基于用戶輸入的預(yù)測(cè)地址查找行為。這目前適用于這個(gè)單一的目的。<mat-form-field>      <input matInput placeholder="Search Multi" aria-label="State" [matAutocomplete]="auto" [formControl]="searchMoviesCtrl" type="text">      <mat-autocomplete #auto="matAutocomplete" [displayWith]="displayFn">        <mat-option *ngIf="isLoading" class="is-loading">Loading...</mat-option>        <ng-container *ngIf="!isLoading">          <mat-option *ngFor="let suggestion of filteredMovies" [value]="suggestion.text">            <span><b>{{suggestion.text}}</b></span>          </mat-option>        </ng-container>      </mat-autocomplete>    </mat-form-field>    <br>  <ng-container *ngIf="errorMsg; else elseTemplate">    {{errorMsg}}  </ng-container>  <ng-template #elseTemplate>    <h5>Selected Value: {{searchMoviesCtrl.value}}</h5>  </ng-template>import { Component, OnInit } from '@angular/core';import { FormControl } from '@angular/forms';import { HttpClient } from '@angular/common/http';import { Router } from '@angular/router';import { debounceTime, tap, switchMap, finalize } from 'rxjs/operators';@Component({  selector: 'app-root',  templateUrl: './app.component.html',  styleUrls: ['./app.component.css']})export class AppComponent implements OnInit {  searchMoviesCtrl = new FormControl();  filteredMovies: any;  isLoading = false;  errorMsg: string;  constructor(private http: HttpClient)   { }ngOnInit() {    this.searchMoviesCtrl.valueChanges      .pipe(        debounceTime(500),        tap(() => {          this.errorMsg = "";          this.filteredMovies = [];          this.isLoading = true;        }),        switchMap(value => this.http.get("http://searchaddressapiurl?text=" + this.searchMoviesCtrl.value)          .pipe(            finalize(() => {              this.isLoading = false            }),          )        )      )但是,我想允許用戶添加額外的自動(dòng)完成輸入,這將在值更改時(shí)使用/調(diào)用相同的 API。我該怎么做才能做到最好?
查看完整描述

1 回答

?
婷婷同學(xué)_

TA貢獻(xiàn)1844條經(jīng)驗(yàn) 獲得超8個(gè)贊

我讓它根據(jù)需要工作!

動(dòng)態(tài)添加對(duì)數(shù)據(jù)結(jié)果集使用相同 API 的附加自動(dòng)完成功能。

debounceTime 減少了用戶輸入 searchText 時(shí)的 API 調(diào)用次數(shù)。

我相信您可以清理它,并且正如一位評(píng)論者所建議的那樣,將 API 調(diào)用放入服務(wù)中,但無論如何它都在這里。

請(qǐng)參閱我的問題帖子中的更新 3以獲取代碼!


查看完整回答
反對(duì) 回復(fù) 2022-10-08
  • 1 回答
  • 0 關(guān)注
  • 121 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)