检索数据时获得0计数

时间:2019-02-02 13:58:34

标签: ionic-framework ionic3

您好,我正在使用Ionic3。在.ts中,我正在使用此代码来获取数据库中的名称计数。

  this.http
  .get(this.url)
  .map(res => res.json())
  .subscribe(
    dataa => {
      setTimeout(() => {
        this.items = dataa;

        // Get the data count
       for ( let iteme of dataa){
              this.get_the_count = this.url_count + iteme.name;
              iteme.count = 0;
              // Get the count
              this.http
                .get(this.get_the_count)
                .map(res => res.json())
                .subscribe(
                       data1 => {
                      iteme.count = data1;
        },

在html中,我使用了:

    <span class="badge1">{{iteme.count}}</span>

如果名称字段是英文字符,这对我来说非常有用,如果我使用阿拉伯语这样的其他编码,问题出在我身上,这是零值

0 个答案:

没有答案