我一直未定义

时间:2017-06-08 00:24:40

标签: parsing ionic2

enter image description here我正在使用离子与解析,我试图从res.results

访问孩子
  

我仍然遇到 undefined 错误

 unfollow(){
      this.url ='https://meet-up-zionnite.c9users.io/app1/classes/friendslist';
     this.http.get(this.url, {headers : this.headers}).map(res => res.json()).subscribe(res =>{
     this.localstorage.set('friendslist_db_detail',res);
     console.log(res.results.my_id);
     if(res.results == this.my_id){
     console.log('hey over here');
     }else{
     console.log("Not Match");
     }
     });
    } 
  

这是我需要访问的内容:

     

1)ObjectId

     

2)my_id

     

3)f_id

1 个答案:

答案 0 :(得分:0)

  哇,我从我的一位在线导师那里得到了帮助,并解决了它   这里是缺少的东西

console.log(res.results[0]['my_id']);