我仍然遇到 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
答案 0 :(得分:0)
哇,我从我的一位在线导师那里得到了帮助,并解决了它 这里是缺少的东西
console.log(res.results[0]['my_id']);