这篇文章主要介绍了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);
}
}
页面如下:
对应的数据库:
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