AJAX实现数据的增删改查操作详解java后台

这篇文章主要介绍了AJAX实现数据的增删改查操作,结合实例形式详细分析了ajax结合java后台实现数据库增删改查相关操作技巧,需要的朋友可以参考下

本文实例讲述了AJAX实现数据的增删改查操作。分享给大家供大家参考,具体如下:

主页:index.html

 
 
 
 
 
 
 编号:

 姓名:

 性别:男:女:

 年龄:
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
 

 身高:

 体重:

 
 

 

 

 
 编号:
 
 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

编号 姓名 性别 年龄 身高 体重

 
 
 

 

 

 编号:
 
 
 

 

 

 编号:

 姓名:

 性别:男:女:

 年龄:
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
 

 身高:

 体重:

 
 
 
 
 
 /*
 var x = $(“#queryResult”).html();
 
 for(var i=0; i < 20 ; i++) {
  x += ‘

‘;
 }
 $(“#queryResult”).html(x);*/
 function submit() {
 var pno = $(“#pno”).val();
 var name = $(“#name”).val();
 var sex = $(‘input[name=”sex”]:checked’).val();
 var age = $(“#age”).val();
 var height = $(“#height”).val();
 var weight = $(“#weight”).val();
 
 var data={
 
  “pno”:pno,
  “name”:name,
  “sex”:sex,
  “age”:age,
  “height”:height,
  “weight” : weight
 }
 
 
 $.ajax({
  type : “post”,
  url : “Hello”,
  data : data,
  cache : true,
  async : true,
  success: function (data ,textStatus, jqXHR){
     if(data.code == 200){
      alert(“插入成功了”);
     }else{
      alert(data.message);
     }
   },
     error:function (XMLHttpRequest, textStatus, errorThrown) {  
     
       alert(typeof(errorThrown));
     }
 
 });
 }
 
 
 function query() {
 
 var pno = $(“#pno_query”).val();
 var str = [“编号”,”姓名”,”性别”,”年龄”,”身高”,”体重”];
 $.ajax({
  type : “post”,
  url : “HelloQuery”,
  data : {
  “pno”: pno
  },
  cache : true,
  async : true,
  success: function (data ,textStatus, jqXHR){
  //data = $.parseJSON(data);
  var j = 0;
  var x = 1;
  //for(var i=1; i <20; i++) {
   for(var p in data){//遍历json对象的每个key/value对,p为key
   console.log(data[p]);
   if(j == 6) {
    j = 0;
    x++;
   }
    $(“#queryResult tr:eq(“+x+”) td:eq(“+j+”)”).html(data[p]);
    console.log(data[p]);
    j++;
   }
  //}
 
 
 
    
   },
     error:function (XMLHttpRequest, textStatus, errorThrown) {  
     
       alert(typeof(errorThrown));
     }
 
 });
 }
 
 function del() {
 var pno = $(“#pno_del”).val();
 
 $.ajax({
  type : “post”,
  url : “HelloDelete”,
  data : {
  “pno”: pno
  },
  cache : true,
  async : true,
  success: function (data ,textStatus, jqXHR){
  if(data.code == 200){
      alert(“删除成功了”);
     }else{
      alert(data.message);
     }
   },
     error:function (XMLHttpRequest, textStatus, errorThrown) {  
     
       alert(typeof(errorThrown));
     }
 
 });
 }
 
 function update() {
 var pno = $(“#pno_up”).val();
 var name = $(“#name_up”).val();
 var sex = $(‘input[name=”sex_up”]:checked’).val();
 var age = $(“#age_up”).val();
 var height = $(“#height_up”).val();
 var weight = $(“#weight_up”).val();
 
 var data={
 
  “pno”:pno,
  “name”:name,
  “sex”:sex,
  “age”:age,
  “height”:height,
  “weight” : weight
 }
 
 
 $.ajax({
  type : “post”,
  url : “HelloUpdate”,
  data : data,
  cache : true,
  async : true,
  success: function (data ,textStatus, jqXHR){
     if(data.code == 200){
      alert(“更新成功了”);
     }else{
      alert(data.message);
     }
   },
     error:function (XMLHttpRequest, textStatus, errorThrown) {  
     
       alert(typeof(errorThrown));
     }
 
 });
 }
 
 
 
 

增加的Serlvet:Hello.java

package com.web;
 
import java.io.IOException;
import javax.servlet.ServletException;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
 
import com.mysql.MysqlUtil;
 
/**
 * Servlet implementation class Hello
 */
@WebServlet(“/Hello”)
public class Hello extends HttpServlet {
 private static final long serialVersionUID = 1L;
   
  /**
   * @see HttpServlet#HttpServlet()
   */
  public Hello() {
    super();
    // TODO Auto-generated constructor stub
  }
 
 /**
 * @see HttpServlet#doGet(HttpServletRequest request, HttpServletResponse response)
 */
 protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
 // TODO Auto-generated method stub
 response.getWriter().append(“Served at: “).append(request.getContextPath());
 }
 
 /**
 * @see HttpServlet#doPost(HttpServletRequest request, HttpServletResponse response)
 */
 protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
 response.setCharacterEncoding(“utf-8”);
 response.setContentType(“application/json; charset=utf-8”);
 
 String pno = request.getParameter(“pno”);
 String name = request.getParameter(“name”);
 String sex = request.getParameter(“sex”);
 String age = request.getParameter(“age”);
 String height = request.getParameter(“height”);
 String weight = request.getParameter(“weight”);
 
 String sqlInsert = “INSERT INTO Person (Pno,Pname,Psex,Page,Pheight,Pweight) VALUES(‘”;
 sqlInsert += pno +”‘,'”;
 sqlInsert += name +”‘,'”;
 sqlInsert += sex +”‘,”;
 sqlInsert += age +”,”;
 sqlInsert += height +”,”;
 sqlInsert += weight +”)”;
 
 int message = MysqlUtil.add(sqlInsert);
 String rep = “”;
 if(message == 1) {
  rep = “{\”code\”:200,\”message\”:\”成功插入数据库\”}”;
 }else {
  rep = “{\”code\”:\”999\”,\”message\”:\”插入失败了\”}”;
 }
 response.getWriter().write(rep);
 
 
 }
 
}

删除的Servlet:HelloDelete.java

package com.web;
 
import java.io.IOException;
import javax.servlet.ServletException;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
 
import com.mysql.MysqlUtil;
 
/**
 * Servlet implementation class HelloDelete
 */
@WebServlet(“/HelloDelete”)
public class HelloDelete extends HttpServlet {
 private static final long serialVersionUID = 1L;
   
  /**
   * @see HttpServlet#HttpServlet()
   */
  public HelloDelete() {
    super();
    // TODO Auto-generated constructor stub
  }
 
 /**
 * @see HttpServlet#doGet(HttpServletRequest request, HttpServletResponse response)
 */
 protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
 // TODO Auto-generated method stub
 response.getWriter().append(“Served at: “).append(request.getContextPath());
 }
 
 /**
 * @see HttpServlet#doPost(HttpServletRequest request, HttpServletResponse response)
 */
 protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
 response.setCharacterEncoding(“utf-8”);
 response.setContentType(“application/json; charset=utf-8”);
 
 String pno = request.getParameter(“pno”);
 
 
 String sqlDel = “delete from Person where pno=”+pno;
 
 
 int message = MysqlUtil.del(sqlDel);
 String rep = “”;
 if(message == 1) {
  rep = “{\”code\”:\”200\”,\”message\”:\”成功删除\”}”;
 }else {
  rep = “{\”code\”:\”999\”,\”message\”:\”删除失败\”}”;
 }
 response.getWriter().write(rep);
 }
 
}

更新的Servlet:HelloUpdate.java

package com.web;
 
import java.io.IOException;
import javax.servlet.ServletException;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
 
import com.mysql.MysqlUtil;
 
/**
 * Servlet implementation class HelloUpdate
 */
@WebServlet(“/HelloUpdate”)
public class HelloUpdate extends HttpServlet {
 private static final long serialVersionUID = 1L;
   
  /**
   * @see HttpServlet#HttpServlet()
   */
  public HelloUpdate() {
    super();
    // TODO Auto-generated constructor stub
  }
 
 /**
 * @see HttpServlet#doGet(HttpServletRequest request, HttpServletResponse response)
 */
 protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
 // TODO Auto-generated method stub
 response.getWriter().append(“Served at: “).append(request.getContextPath());
 }
 
 /**
 * @see HttpServlet#doPost(HttpServletRequest request, HttpServletResponse response)
 */
 protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
 response.setCharacterEncoding(“utf-8”);
 response.setContentType(“application/json; charset=utf-8”);
 
 String pno = request.getParameter(“pno”);
 String name = request.getParameter(“name”);
 String sex = request.getParameter(“sex”);
 String age = request.getParameter(“age”);
 String height = request.getParameter(“height”);
 String weight = request.getParameter(“weight”);
 
 String sqlupdate = “update Person set “;
// sqlupdate += “Pno='”+ pno +”‘,”;
 sqlupdate += “Pname='”+ name +”‘,”;
 sqlupdate += “Psex='”+ sex +”‘,”;
 sqlupdate += “Page=”+ age +”,”;
 sqlupdate += “Pheight=”+ height +”,”;
 sqlupdate += “Pweight=”+ weight;
 sqlupdate += ” where Pno='”+pno+”‘”;
 System.out.println(sqlupdate);
 int message = MysqlUtil.update(sqlupdate);
 String rep = “”;
 if(message == 1) {
  rep = “{\”code\”:\”200\”,\”message\”:\”成功插入数据库\”}”;
 }else {
  rep = “{\”code\”:\”999\”,\”message\”:\”插入失败了\”}”;
 }
 response.getWriter().write(rep);
 
 }
 
}

查询的Servlet:HelloQuery.java

package com.web;
 
import java.io.IOException;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import java.util.Map;
 
import javax.servlet.ServletException;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
 
import com.mysql.MysqlUtil;
 
/**
 * Servlet implementation class HelloQuery
 */
@WebServlet(“/HelloQuery”)
public class HelloQuery extends HttpServlet {
 private static final long serialVersionUID = 1L;
   
  /**
   * @see HttpServlet#HttpServlet()
   */
  public HelloQuery() {
    super();
    // TODO Auto-generated constructor stub
  }
 
 /**
 * @see HttpServlet#doGet(HttpServletRequest request, HttpServletResponse response)
 */
 protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
 // TODO Auto-generated method stub
 response.getWriter().append(“Served at: “).append(request.getContextPath());
 }
 
 /**
 * @see HttpServlet#doPost(HttpServletRequest request, HttpServletResponse response)
 */
 protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
 response.setCharacterEncoding(“utf-8”);
 response.setContentType(“application/json; charset=utf-8”);
 String pno = request.getParameter(“pno”);
 String[] params = {“Pno”,”Pname”,”Psex”,”Page”,”Pheight”,”Pweight”};
 String sql = “select * from Person where Pno=”+pno;
 String data = “{“;
 
 String[] str = {“编号”,”姓名”,”性别”,”年龄”,”身高”,”体重”};
 List<Map> listmap = new ArrayList();
 listmap = MysqlUtil.show(sql, params);
 for(int i =0 ; i<listmap.size();i++) { 
  for(int j=0 ; j<listmap.get(i).size();j++) {
  data += “\””+str[j]+”\”:”+”\””+listmap.get(i).get(params[j])+”\”,”; 
  }
 }
 data = data.substring(0, data.length()-1);
 data += “}”;
 
 
 System.out.println(data);
 response.getWriter().write(data);
 }
 
 
 
}

页面如下:

AJAX实现数据的增删改查操作详解java后台

对应的数据库:

AJAX实现数据的增删改查操作详解java后台 

git克隆地址:https://github.com/dreamiboy/JDBCUtil.git

更多关于ajax相关内容感兴趣的读者可查看本站专题:《jquery中Ajax用法总结》、《JavaScript中ajax操作技巧总结》、《PHP+ajax技巧与应用小结》及《asp.net ajax技巧总结专题》

希望本文所述对大家ajax程序设计有所帮助。

来源:脚本之家

链接:https://www.jb51.net/article/187854.htm

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容, 请发送邮件至253000106@qq.com举报,一经查实,本站将立刻删除。

发布者:SEO优化专员,转转请注明出处:https://www.chuangxiangniao.com/p/900235.html

(0)
上一篇 2025年1月4日 01:53:23
下一篇 2025年1月4日 01:54:09

AD推荐 黄金广告位招租... 更多推荐

相关推荐

  • 对javascript网站渗透测试安全检测漏洞方法

    最近渗透测试工作比较多没有空闲的时间来写文章,今天由我们Sine安全的渗透主管来普及一下javascript的安全测试基础,很多客户想要了解具体js的调用漏洞或提交playload的过程以及是如何拿到最高权限和绕过登录等等执行命令漏洞之类的…

    2025年1月4日
    100
  • 国内三款知名java商城系统浅析:shop++、shopnc、javashop

    在众多商家决定搭建一个独立的网上商城系统时,就开始苦恼,市面上这么多商城系统到底该选哪一个才好呢?我们又如何选到靠谱又实用的商城系统呢? 最近我也在了解商城系统的应用程序,市面上的商城系统颇为混杂,以下是本人针对国内三款知名java商城系统…

    建站经验 2025年1月4日
    100
  • 渗透测试对Java架构网站漏洞检测方法

    近期对平台安全渗透测试中遇到有JAVA+mysql架构的网站,针对此架构我们Sine安全渗透工程师整理了下具体的漏洞检测方法和防护修复方法,很多像执行框架漏洞获取到系统权限,以及跨权限写入木马后门等等操作,希望大家在渗透测试的道路中发现更多…

    2025年1月4日
    100
  • java教程:java基础教程带你入门

    Java作为一种面向对象的编辑语言一直在世界编程语言排行榜中稳居第一名。因此想要成为一名优秀的互联网工作者,java的应用学习是基本,零基础或基础薄弱的人下边这套java教程会让你迅速入门。 java教程的基础教程首先是java的简介,在第…

    编程技术 2025年1月4日
    100
  • JavaScript 如何计算文本的行数的实现

    这篇文章主要介绍了JavaScript 如何计算文本的行数的实现,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧 需求:根据行数决定是否限制展开和收起。 思路:用2个块统…

    2025年1月4日
    100
  • JavaScript实现串行请求的示例代码

    这篇文章主要介绍了JavaScript实现串行请求的示例代码,帮助大家更好的理解和使用JavaScript,感兴趣的朋友可以了解下 使用async和await var fn = async function(promiseArr) { fo…

    编程技术 2025年1月4日
    100
  • 浅谈JavaScript 声明提升

    这篇文章主要介绍了JavaScript 声明提升的相关资料,帮助大家更好的理解和学习JavaScript,感兴趣的朋友可以了解下 1 引例及基本原理 在学习JavaScript声明提升之前,我们先看下面这个例子: console.log(a…

    编程技术 2025年1月4日
    100
  • JavaScript正则表达式匹配字符串字面量

    第一次遇到这个问题, 是大概两年前写代码高亮, 从当时的解决方案到现在一共有三代, 嘎嘎. 觉得还是算越来越好的. 第一代: //那个时候自己正则还不算很精通, 也没有(?:…)这种习惯, 是以寻找结束引号为入口写出的这个正则.…

    编程技术 2025年1月4日
    200
  • Ajax工作原理及优缺点实例解析

    这篇文章主要介绍了Ajax工作原理及优缺点实例解析,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下 1.Ajax是什么? 全称是 asynchronous javascript and xm…

    2025年1月4日
    200
  • ajax实现excel报表导出

    利用ajax实现excel报表导出【解决乱码问题】,供大家参考,具体内容如下 背景 项目中遇到一个场景,要导出一个excel报表。由于需要token验证,所以不能用a标签;由于页面复杂,所以不能使用表单提交。初步考虑前端使用ajax,后端返…

    编程技术 2025年1月4日
    200

发表回复

登录后才能评论

联系我们

156-6553-5169

在线咨询: QQ交谈

邮件:253000106@qq.com

工作时间:周一至周五,9:30-18:30,节假日休息

联系微信