http响应未保存

时间:2017-11-29 23:31:38

标签: angular ionic-framework apify

我有离子/角度项目。

我打电话给外部api:

  public getKeys() {

this.http.get('https://api.apify.com/v2/key-value-stores/myStorage/keys')
  .subscribe(
  data => this.dataKeys,
  err => this.handleError(err)
  );

}

我的问题是,即使我从服务器获得有效的回复:

   {
  "data": {
    "items": [
      {
        "key": "1",
        "size": 52
      },
      {
        "key": "2",
        "size": 60
      }
    ],
    "count": 2,
    "limit": 1000,
    "exclusiveStartKey": null,
    "isTruncated": false,
    "nextExclusiveStartKey": null
  }
}

它没有保存到this.dataKeys。我叫这个:

 ngOnInit() {
    this.createStorage();
    console.log(this.dataStorage);
    this.getKeys();
    console.log(this.dataKeys);
    this.players.push(this.player);
    console.log(this.players);
    this.postData(JSON.parse(JSON.stringify(this.player)), "3");
    this.getKeys();
    console.log(this.dataKeys);
  }

来自api的所有日志都是未定义的。每一个帮助都将非常感激。

1 个答案:

答案 0 :(得分:0)

我相信你没有将返回的数据分配给你的对象。

你应该做

public getKeys() {

this.http.get('https://api.apify.com/v2/key-value-stores/myStorage/keys')
  .subscribe(
  data => 
           {
                  this.dataKeys = data
            },
  err => this.handleError(err)
  );