ionic3 报错: TypeError: XXX is not a function
貌似又是一个初级错误,问题出哪了?
报错:Error: Uncaught (in promise): TypeError: _this.rest.getUserInfo is not a function
1.报错截图:
2.this.rest.getUserInfo 代码行片断:
3.公共 getUserInfo 方法:
======================================
loadUserPage方法源码:
public notLogin: boolean = true;
public logined: boolean = false;
headface: string;
userinfo: string[];
loadUserPage() {
this.Storage.get('UserId').then((val) => {
if (val != null) {
//加载用户数据
var loading = super.showLoading(this.loadCtrl, "加载中...");
this.rest.getUserInfo(val)
.subscribe(
userinfo => {
this.userinfo = userinfo;
this.headface = userinfo["UserHeadface"] + "?" + (new Date()).valueOf();
this.notLogin = false;
this.logined = true;
loading.dismiss();
}
);
}
else {
this.notLogin = true;
this.logined = false;
}
});
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
很显然,你取不到正确的
getUserInfo
地址。检查一下this
指向。如果在回调里面用最好用箭头函数。