ajax xmlhttp.onreadystatechange = function () { if (xmlhttp.readyState === 4 && xmlhttp.status === 200) { if (xmlhttp.responseText) { alert(' 验证成功') } } } xmlhttp.open('POST', 'http://localhost:3000/e', true) xmlhttp.setRequestHeader('Content-type', 'application/x-www-form-urlencoded') xmlhttp.send(data) alert(data.email)koa2router.post('/e', async (ctx, next) => { var name = ctx.request.body.email || ''; ctx.response.set("Access-Control-Allow-Origin", '*'); ctx.response.body = '用户名或密码错误'; console.log(name); });已经确定服务器端正确接受了请求 但是接收到的状态码是404这是什么原因?
添加回答
举报
0/150
提交
取消