gpt4 book ai didi

javascript - 如何使用 Typescript 将 id 放入 newUser 中

转载 作者:行者123 更新时间:2023-12-03 02:32:50 25 4
gpt4 key购买 nike

我有一个注册表单,我从前端提供电子邮件和密码,并从 typescript 提供活跃的 role_id 字段。我在控制台输出中变得活跃,但不是 role_id。我想如果我可以在 ts 文件的控制台输出中获取 role_id 那么我的错误可能会解决。我在 apiservice 部分中获取了所有必需的字段,但在我的组件文件中却没有。任何人都可以帮助我解决这个问题。

最佳答案

您需要使用一个loggedIn变量并使用它来切换警报弹出窗口,

组件变量:

public loggedIn = false; 

登录方式:

login(email, password) { 
this.localSt.store('boundValue', email);
var data = {
email: email,
password: password
};
this.ApiService
.login(data)
.subscribe(
user => {
this.signIn.hide();
this.loggedIn = true;
this.toasterService.pop('success', 'SignIn Successfull');
this.myFav = true;
}, error => {
this.myFav = false;
if (error.data && error.data.length > 0) {
this.toasterService.pop('error', error.data);
} else {
this.toasterService.pop('error', 'Something went wrong!');
}
})
}

弹出方法:

openPopup(event) { 
if (!this.loggedIn) {
event.preventDefault();
this.signIn.show();
}
}
}

关于javascript - 如何使用 Typescript 将 id 放入 newUser 中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48663179/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com