已关闭。此问题需要details or clarity。它目前不接受回答。
**希望改进此问题?**通过editing this post添加详细信息并阐明问题。
6天前关门了。
Improve this question
try {
const resRegister = await fetch(`${BASE_URL}/auth/register`, {
method: "POST",
headers: {
"content-type": "application/json",
},
body: JSON.stringify(credentials),
});
const result = await resRegister.json();
console.log(resRegister);
if (!resRegister.ok) {
alert(result.message);
} else {
dispatch({ type: "Register_success" });
navigate("/login");
}
} catch (error) {
alert(error.message);
}
};
//here is the config file already added
export const BASE_URL = "http://localhost:4000/api/v1";
我该怎么解决?
1条答案
按热度按时间mspsb9vt1#
有一个内部服务器错误,可能的问题-您的URL可能不正确,或者请求中的凭据对象可能缺少或不正确的数据。