列表索引超出范围Python推文管理器,推文没有保存?

时间:2017-12-01 04:37:46

标签: python python-3.x twitter

我正在尝试为一个类项目创建一个推文管理器,并且在“查看推文”功能方面遇到了一些问题。我也不认为我的推文正在保存(它们应该被序列化并保存以便以后可以访问)。我一直得到IndexError“列表索引超出范围”但我肯定发了5条推文?

这是我的代码:

My code :


//set token for Authorization

  setHeaders() {
    var token = this.localStorageService.getToken();
    let headers = new Headers({ 'Content-Type': 'application/x-www-form-urlencoded' });
    headers.append('Authorization', token);
    this.options = new RequestOptions({ headers: headers });
  }

//function
getMaintenanceType() {
    this.setHeaders();
    return this.http.get(this.url_Configuration.maintenancetype, this.options)
      .map(res => res.json())
  }

0 个答案:

没有答案