【发布时间】:2020-06-20 01:37:28
【问题描述】:
我有一个登录表单。当点击提交按钮时,我通过 GraphQL 后端检查电子邮件和密码是否正确。如果是,则返回一个令牌并将其存储在本地存储中。有时会出现错误,例如:
“密码错误”或“用户不存在”。
有什么方法可以将这些错误存储为字符串,以便稍后使用条件渲染显示它们?
这就是我的突变的样子:
function submitForm(LoginMutation: any) {
const { email, password } = state;
if(email && password){
LoginMutation({
variables: {
email: email,
password: password,
},
}).then(({ data }: any) => {
localStorage.setItem('token', data.loginEmail.accessToken);
})
.catch(console.log)
}
}
我在退货时就这样使用它
return (
<Mutation mutation={LoginMutation}>
{(LoginMutation: any) => (
....)}>
</Mutation>
)
目前,我只是根据令牌是否存在显示一个错误,但我想让我的错误特定于 GraphQL 错误。
function ShowError(){
if (!localStorage.getItem('token'))
{
console.log('Login Not Successful');
return <Typography color='primary'>Login Not Successful</Typography>
}
}
编辑:
示例错误:
[Log] Error: GraphQL error: Key (email)=(c@c.com) already exists.
我试过了,但它从来没有记录任何东西:
.then(({data, errors}:any) => {
if (errors && errors.length) {
console.log('Errors', errors);
setErrorMessage(errors[0].message);
console.log('Whats the error', errors[0].message)
} else {
console.log('ID: ', data.createUser.id);
}
})
```
The backend isn't made by me
【问题讨论】:
标签: javascript reactjs typescript graphql apollo