mabuly 2022-06-07 22:33 采纳率: 0%
浏览 24

后台获取不到前台AJAX数据

后台获取不到前台AJAX数据

<script>
  window.onload = function (){
      document.getElementById("btn").onclick = function (){
          var xhr = new XMLHttpRequest();
         xhr.onreadystatechange = function (){
             if (xhr.readyState == 4) {
                 if (this.status == 200){
                     document.getElementById("mydiv").innerHTML = this.responseText
                 } else {
                     alert(this.status)
                 }
             }
         }
          xhr.open("POST","/ajax/ajaxrequest4",true)
          //模拟form表单提交数据
          xhr.setRequestHeader('Content-Type','application/x-www-form-urlencoded');
          //放到send()中的数据会自动在请求体当中提交数据
          //使用JS代码获取用户名和密码
          var username = document.getElementById("username").value;
         var password = document.getElementById("password").value;
          xhr.send("username"+username+"&password"+password)
      }
  }
</script>

@WebServlet("/ajaxrequest4")
public class AjaxRequest4Servlet extends HttpServlet {
    @Override
    protected void doPost(HttpServletRequest request, HttpServletResponse response)
            throws ServletException, IOException {
        response.setContentType("text/html;charset=utf-8");
        PrintWriter out = response.getWriter();
        //out.print("<font color='red'>hello ajax 4</font>");
        //获取用户名和密码
        String username = request.getParameter("username");
        String password = request.getParameter("password");
        out.print("用户名是:"+username+".密码是:"+password);
    }
}

运行结果及报错内容

img

  • 写回答

2条回答 默认 最新

  • 船长在船上 前端领域优质创作者 2022-06-07 23:46
    关注

    用户名密码传递错误

    评论

报告相同问题?

问题事件

  • 创建了问题 6月7日

悬赏问题

  • ¥15 用C语言写离散数学相关问题
  • ¥30 如何用python的GephiStreamer连接到gephi中,把Python和Gephi的具体操作过程都展示,重点回答Gephi软件的调试,以及如果代码的端口在浏览器中无法显示怎么处理
  • ¥15 ansys机翼建模肋参数
  • ¥15 Sumo软件无法运行
  • ¥15 如何在vscode里搭建stata的编辑环境?
  • ¥15 dify知识库创建问题
  • ¥15 如何用C#的chart画1000万个点不卡顿
  • ¥15 爬虫技术找到网上看过房源客户的电话
  • ¥20 代码:Python随机森林反演生物量数据处理问题
  • ¥15 Linux系统的命令行窗口回车变成了换行,无法执行命令了