asp.net - 如何使用 Angular 2/4 开发搜索建议文本框

标签 asp.net angular angular2-template angular2-forms angular4-forms

我是 Angular 新手。我如何开发 Angular 2/4 中的下拉建议搜索框。单击搜索按钮时,将使用下面的代码显示详细信息。但是我在尝试在文本框中输入时需要显示建议详细信息。与自动完成相同(在搜索期间,将显示“键入时”建议。)

组件.HTML

        <form role="form">
            <div class="row">
                <div class="form-group">
                    <div class="input-group">
                        <input name="search" 
                            class="form-control" 
                            type="text" 
                            placeholder="Search" 
                            required="" [(ngModel)]='searchcontent'>
                        <span class="input-group-btn">
                            <button 
                                class="btn btn-success ProductSearchBtn" 
                                    type="button" 
                                (click)='FetchItemDetailsSearch(searchcontent)'>
                                    <i class="glyphicon glyphicon-search" 
                                        aria-hidden="true"></i>
                                    <span style="margin-left:10px;">Search</span>
                            </button>
                        </span>
                    </div>
                </div>
            </div>
        </form>
    </div>
</section>
<section class="CommonsubWhiteBg" 
    style='height:850px;overflow-y:scroll; overflow-x:hidden' 
    (scroll)="onScroll($event)">
        <ng-container *ngFor="let item of itemdetails;">
            <article class="row" style="margin:0px;">
                <div class="col-md-12 col-sm-12 col-xs-12 EnquiryMore">
                    <a [routerLink]="['/productdetails',item.ItemID]">
                        <h5>{{item.ItemCode + ' - ' + item.ItemDescription}}</h5>
                    </a>
                </div>
            </article>
        </ng-container>
        <ng-container *ngIf="!itemdetails" style="margin:0px;">
            <article class="col-md-12">
                <h3>Loading data...</h3>
            </article>
        </ng-container>
        <ng-container *ngIf="itemdetails&&itemdetails.length==0" 
            class="ItemNotfoundArea row" style="margin:0px;">
            <article class="col-md-12">
                <h1>Sorry</h1>
                <p>Item Not Found</p>
            </article>
        </ng-container>
    </section>

component.ts 文件

FetchItemDetailsSearch(itemcodeordesc: string): void {
    this.pageIndex = 1;
    this.searchflag = 1;
    if (itemcodeordesc.length > 0)
        this.searchcontent = itemcodeordesc;
    else {
        itemcodeordesc = undefined
        this.searchcontent = itemcodeordesc;
    }
    this.prevScrollPosition = 0;        
    this._enqService
        .FetchItemDetailsSearch(this.searchcontent, this.pageIndex)
            .subscribe(itemsData => this.itemdetails = itemsData,
                error => {
                    console.error(error);
                    this.statusMessage = 
                        "Problem with the service.Please try again after sometime";
                }
            );
        }

**Service.ts **

FetchItemDetailsSearch(itemcodeordesc: string, pageIndex: number): 
  Observable<IEnquiryDetails[]> {
    return this._http.get('http://localhost:1234/api/enquirydetails/', 
        { params: 
            { itemcodeordesc: itemcodeordesc, 
              pageIndex: pageIndex } 
        })
    .map((response: Response) => <IEnquiryDetails[]>response.json())
    .catch(this.handleError)
}

enter image description here

条件:仅尝试使用 Angular 4/2 而不是 jQuery

最佳答案

看一下 Angular Material 自动完成组件。

https://material.angular.io/components/autocomplete/examples .

您还可以拥有自己的自定义过滤器功能。下面的示例代码将为您提供实现相同目标的方法。 https://stackblitz.com/angular/krlrmgepmrv?file=app%2Fautocomplete-filter-example.ts

或者 试试这个

http://www.angulartutorial.net/2017/03/simple-search-using-pipe-in-angular-2.html

关于asp.net - 如何使用 Angular 2/4 开发搜索建议文本框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51147364/

相关文章:

css - 用于隐藏和显示操作的 FAB 按钮动画

javascript - Angular2-在标题和侧边栏组件之间传递标志状态

c# - 在 ASP.NET MVC 3 中添加你自己的 HtmlHelper

javascript - 在 JavaScript 中使用服务器端正则表达式

c# - IE7/8 : PDF file won't download with HTTP GET

javascript - Angular 6服务注入(inject)异常

Angular 2 : Component Interaction, 可选输入参数

c# - 动态确定应用程序是基于 Winform 还是基于 ASP.NET

Angular 4 根模块 'import' 和 'imports'

javascript - Angular 2 - 检查默认值是否已更改