【发布时间】:2018-07-10 09:20:09
【问题描述】:
我正在使用 Angular 5,但出现错误,代码如下:
signIn(provider) {
this._auth.login(provider).subscribe(
(data) => {
console.log(data);
this.hideForm = false;
this.emaill = data.email;
this.nom = data.last_name;
this.prenom = data.first_name;
this.profileImage = data.image;
})
}
错误是:
src/app/authentification/authentification.component.ts(34,28):错误 TS2339:“对象”类型上不存在属性“电子邮件”。 src/app/authentification/authentification.component.ts(35,25):错误 TS2339:“对象”类型上不存在属性“last_name”。 src/app/authentification/authentification.component.ts(36,28):错误 TS2339:“对象”类型上不存在属性“first_name”。 src/app/authentification/authentification.component.ts(37,34):错误 TS2339:“对象”类型上不存在属性“图像”。
【问题讨论】:
标签: angular