问题描述
我正在尝试使用 swagger api 制作一个带有 react 的登录页面:这是我拥有的代码,但它给了我这个错误:POST https://dev.tuten.cl/TutenREST/rest/user/testapis%40tuten.cl 400 (Bad Request)
当我在 API 中进行测试时,它给了我一个 ok,但是我的函数结果是 400 BAD REQUEST 我不明白为什么它不起作用:
有人可以帮我吗?
const onSignIn = async ({ email,password,app }) => {
const result = await fetch('https://dev.tuten.cl/TutenREST/rest/user/testapis%40tuten.cl',{
method: 'POST',headers: {
'Content-Type': 'application/json',},body: JSON.stringify({
email,app,}),});
if (result.ok) {
const promiseData = await result.json();
console.log(promiseData);
} else {
console.log('Access is not allowed');
}
};
解决方法
暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!
如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。
小编邮箱:dio#foxmail.com (将#修改为@)