选项未在按垫选择中显示

时间:2019-02-09 17:27:24

标签: angular typescript

我通过调用数据库填充了一组数据(选项)。我console.log数组(dataArray),它显示该数组已填充了预期的数据。但是,当我运行该应用程序时,选择框不显示数组中的任何选项,而仅显示我在开头设置的默认选项(“ hello”)。任何帮助表示赞赏。

select.component.ts:

import { Component, OnInit} from '@angular/core';
import { HttpClient, HttpParams } from '@angular/common/http';

@Component({
    selector: 'app-select',
    templateUrl: './select.component.html',
    styleUrls: ['./select.component.css']
})

export class SelectComponent implements OnInit {

    constructor(private http: HttpClient) {
    }

    dataArray: String[] = ['hello'];
    ngOnInit() {
        const httpParams = new HttpParams().set('cars', 'toyota');
        console.log(this.dataArray);


        let text;
        this.http.get(`http://localhost/scheduler/parse.php`, { params: httpParams, responseType: 'text' }).subscribe(function (response) {
            text = response;
            console.log(text);
            this.dataArray = JSON.parse(text.replace(/'/g, '"'));
            console.log(this.dataArray);
        });
    }

}

select.component.html:

<mat-card style="margin-top: 25px">
  <mat-form-field>
    <mat-select placeholder="Cars">
      <mat-option *ngFor="let data of dataArray" [value]="data">
        {{data}}
      </mat-option>
    </mat-select>
  </mat-form-field>
</mat-card>

0 个答案:

没有答案
相关问题