java 错误请求正在发送HTTP请求

jpfvwuh4  于 2023-08-02  发布在  Java
关注(0)|答案(1)|浏览(127)

当我在我的项目中手动向URL发出网关请求时,它会给我正确的数据,但是当我尝试用前端发送http请求时,API不起作用。为什么会这样呢?
JavaScript

<script>
  document.getElementById("signupbtn").addEventListener("click",function(){
    const username = document.getElementById("username").value;
    const password = document.getElementById("password").value;

 
    const xhr = new XMLHttpRequest();
    xhr.open("POST","http://localhost:9000/user/register?username=${username}&password=${password}");
    xhr.send();
  })

</script>

字符串
给POST http://localhost:9000/user/register?username=${username}&password=${password} 400(错误请求)

hgb9j2n6

hgb9j2n61#

我不确定你是否能够在没有任何通信器的情况下从你的前端向网关发送API请求。

相关问题