NodeJS 我收到错误500(内部服务器错误)句柄[关闭]

tkqqtvp1  于 2023-08-04  发布在  Node.js
关注(0)|答案(1)|浏览(181)

已关闭。此问题需要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";

我该怎么解决?

mspsb9vt

mspsb9vt1#

有一个内部服务器错误,可能的问题-您的URL可能不正确,或者请求中的凭据对象可能缺少或不正确的数据。

相关问题