自动完成无法正常工作,第一次加载下拉列表,一旦我尝试输入某些内容未进行过滤,则dropwdown值消失 service.ts
getUserLocations(UserID: string, allList:string ) {
return this._http.get(environment.BASE_API_URL + 'xxxxx/' + ID + '/' + allList)
.map((response: Response) => response.json())
.do(data => console.log('locations ' + JSON.stringify(data)))
.catch(this.handleError);
}
compnent.ts
brand: any [];
filteredBrands: any[];
GetUserLocations(PNSLUID: string, allList: string) {
this._searchService.getUserLocations(ID, allList)
.subscribe(
data => {
this.brand= data.result.name;//not sure how to bind the id
},
error => console.log('GetControls Method: ' + <any>error, 'alert alert-danger'));
}
filterBrands(event) {
this.filteredBrands = [];
for (let i = 0; i < this.brand.length; i++) {
let brand = this.brand[i];
if (brand.toLowerCase().indexOf(event.query.toLowerCase()) == 0) {
this.filteredBrands.push(brand);
}
}
}
HTML
<p-autoComplete [(ngModel)]="brand" [suggestions]="filteredBrands" (completeMethod)="filterBrands($event)" [size]="30"
[minLength]="1" placeholder="Office" [dropdown]="true">
<ng-template let-brand pTemplate="item">
<div class="ui-helper-clearfix" style="border-bottom:1px solid #D5D5D5">
<div style="font-size:18px;float:right;margin:10px 10px 0 0">{{brand}}</div>
</div>
</ng-template>
</p-autoComplete>
问题是它没有填充自动完成下拉列表...绑定问题
*************** **更新*********************************************** ****** 问题:示例:我的下拉列表具有以下值
地区a
region b
地区c
HBV办公室
迪办事处
如果我键入区域自动完成不起作用它仍会显示所有值,但是,如果我选择区域b然后开始删除b然后自动完成工作..换句话说..仅当我选择一个值但它才有效如果我从空文本开始并开始输入它不起作用
html
<p-autoComplete name="OfficeList" [(ngModel)]="val" [suggestions]="results" (completeMethod)="search($event)" field="name" dataKey="id" [dropdown]="true"></p-autoComplete>
接口
export interface IOffices {
id: number,
name:string
}
成分</ P>
val: IOffices;
results: IOffices[];
originalResults: IOffices[];
GetUserLocations(PNSLUID: string, allList: string) {
this._searchService.getUserLocations(PNSLUID, allList)
.subscribe(
data => {
this.results = data.result;
this.originalResults = data.result;
},
error => console.log('GetControls Method: ' + <any>error, 'alert alert-danger'));
})
}
search(event) {
console.log("result 2 : " + this.originalResults.length.toString());
console.log("event : " + event.query.toString());
this.results = this.originalResults;
this.results = this.results.filter(data =>
data.name.indexOf(event.query) !== -1);
}
答案 0 :(得分:2)
似乎您正在使用primeng网站中发布的代码。请查看docs
中的 Objects 部分此代码适用于字符串,如果我理解您的代码,则尝试绑定对象。
所以我的建议是:
如果您是绑定对象,则应使用field
中的属性autocomplete
来设置您要向用户显示的对象属性。
您放在NgModel
中的变量(您可以使用整个对象)应该与建议数组中的对象具有“相同的类型”。
对于点击下拉功能,请使用onDropdownClick
事件
<强> HTML 强>
<p-autoComplete name="OfficeList" [(ngModel)]="brand" [suggestions]="filteredBrands" (completeMethod)="filterBrands($event)"
[size]="30" [minLength]="1" placeholder="Office" [dropdown]="true" (onDropdownClick)="GetUserLocations()">
</p-autoComplete>
<强> Component.ts 强>
brand: any [];
filteredBrands: any[];
GetUserLocations(PNSLUID: string, allList: string) {
this._searchService.getUserLocations(ID, allList)
.subscribe(
data => {
this.results = data.result; // You should put the entire array of objects here
},
error => console.log('error'));
}
search(event) {
this.results = this.results
.filter(data => data..toString()
.toLowerCase()
.indexOf(event.query.toString().toLowerCase()) !== -1);
}
进行此调整应该有效。
希望它有所帮助。