当我在我的项目中手动向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(错误请求)
1条答案
按热度按时间hgb9j2n61#
我不确定你是否能够在没有任何通信器的情况下从你的前端向网关发送API请求。