如何使select2与Angular 7一起使用

时间:2019-02-13 05:49:52

标签: angular jquery-select2 angular7

我正在尝试在我的Angular 7项目中实现Select 2。我遵循了从github实现的所有过程。但仍然无法正常工作。当我向其中显示一些静态数据时,它可以工作。它不会填充来自Web服务器的数据。请分享您的想法。下面是我的代码

HTML代码:

  <select2 [options]="areas" [settings]="{ width: '100%' }"></select2>

  <div *ngFor="let ar of areas">
    <p>{{ar.Area_Name}}</p>
  </div>

组件代码:

import { Component } from '@angular/core';
import { HttpClient } from '@angular/common/http';
import { ObjectAreas } from './areasObject';

@Component({
  selector: 'app-root',
  templateUrl: './app.component.html',
  styleUrls: [
    './app.component.css',
    '../../node_modules/bootstrap/dist/css/bootstrap.min.css'
  ]
})
export class AppComponent 
{  
  apiURL: string = 'http://localhost/support/php/getAreas.php?areasno=0';

  constructor(private httpClient: HttpClient) { }

  areas: ObjectAreas;

  public getContacts()
  {
    return this.httpClient.get(this.apiURL);
  }

  ngOnInit()
  {
    this.getContacts()
      .subscribe((res:ObjectLoan)=>
        {      
          this.areas  = res;                           
        });              
  }

}

模型类别:

export class ObjectAreas
{
    AreaSno: number;
    Area_Code: string;
    Area_Name: string;
}

我在控制台中收到此错误:

TypeError: Cannot read property 'toString' of undefined

2 个答案:

答案 0 :(得分:1)

您将需要使用ng2-select2库。

尝试以此处演示的方式使用它。

https://github.com/NejcZdovc/ng2-select2

https://github.com/NejcZdovc/ng2-select2#prerequisites

还要在数据属性中保留areas而不是选项

<select2 [data]="areas" ></select2>

Seeu更新了ngOnit函数,该函数采用res对象并创建所有标题的数组。

  ngOnInit()
  {
    this.getContacts()
      .subscribe((res:any)=>
        {      
             console.log(res)
             var arr = [];

             for(var i=0; i<res.length; i++) {
                var x = res[i].title ;
                arr.push(x);
             }
            //console.log(arr)
            this.users  =  arr;
        });      

  }

如果您需要一组用户ID,则只需更改此行 var x = res[i].title ;var x = res[i].userId ;

答案 1 :(得分:0)

它接受特定格式的数据,例如

[
    {
        id: 'uniqe_id',
        text: 'text_to_display'
    }
]

您必须首先以这种格式转换数据。