IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> JavaScript知识库 -> 网页 连接 数据库 ~ 增删改查 的简单实现 完整代码 -> 正文阅读

[JavaScript知识库]网页 连接 数据库 ~ 增删改查 的简单实现 完整代码

作者:recommend-item-box type_download clearfix

html:

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>首页</title>
<script src="https://cdn.staticfile.org/jquery/1.10.2/jquery.min.js"></script>
</head>
<body onload="get()"> 
//插入(添加)的页面样式
<div>
姓名<input type="text" name="name" id="name"/><br/>
身高<input type="text" name="height" id="height"/><br/>
年龄<input type="text" name="age" id="age"/><br/>
<input value="插入" type="button" onclick="insert()"/>

</div>

 //更新样式
<div style="display:none;background-color:red" id="up_div">
ID<input type="text" name="id" id="up_id"/><br/>
姓名<input type="text" name="name" id="up_name"/><br/>
身高<input type="text" name="height" id="up_height"/><br/>
年龄<input type="text" name="age" id="up_age"/><br/>
<input value="更改" type="button" onclick="update()"/>
</div>
</body>

//js部分
<script type="text/javascript">

function get() {
	$.ajax({
		url:"你的显示数据servlet链接",
		data:{},
		type:"get",
		success:function(value){
			console.log(value.data);
			ViewList(value.data);
		}
	})
}

//数据显示的表格
function ViewList(data) {
	console.log(data+"---");
	var html= '<table style="border:1px solid #000; width:300px;height:20px;">';
	for(var i=0;i<data.length;i++){
		html+='<tr>';
		html += '<td style="border:1px solid #000; width:30px;height:20px;" id="td_type">' + data[i].id + '</td>';
		html += '<td style="border:1px solid #000; width:60px;height:20px;" id="td_type">' + data[i].name + '</td>';
		html += '<td style="border:1px solid #000; width:30px;height:20px;" id="td_type">' + data[i].height + '</td>';
		html += '<td style="border:1px solid #000; width:30px;height:20px;" id="td_type">' + data[i].age + '</td>';
		html += '<td style="border:1px solid #000; width:135px;height:20px;">' ; 
		html += '<input style="border:1px solid #000; width:40px;height:20px;" id="td_type" type="submit" value="修改"   onclick="updateDiv('+data[i].id+')"/>';
		html += '<input style="border:1px solid #000; width:40px;height:20px;" id="td_type"type="submit" value="删除"   onclick="del('+data[i].id+')"/>';
		html+='</td>';
		html+='</tr>';
	}
	html +='</table>';
	$("#inf").empty().append(html);
}

//插入
function insert() {
	var name=$("#name").val();
	var height=$("#height").val();
	var age=$("#age").val();
	$.ajax({
		url:"你的插入servlet链接",
		data:{"name":name,"height":height,"age":age},
		
		success:function(value){
			console.log(value);
			
		}
	})
}

//这段是点击更新后,更新的页面显示出来
function updateDiv(id) {
	document.getElementById("up_div").style.display="block";
	$("#up_id").val(id);
}

//更新操作
function update() {
	var id=$("#up_id").val();
	var name=$("#up_name").val();
	var height=$("#up_height").val();
	var age=$("#up_age").val();
	$.ajax({
		url:"你的更新servlet链接",
		data:{"id":id,"name":name,"height":height,"age":age},
		
		success:function(value){
			console.log(value);
			
		}
	});
}

//删除
function del(id) {
	alert(id);
	$.ajax({
		url:"你的删除servlet链接",
		data:{"id":id},
		type:"get",
		success:function(value){
			console.log(value.data);
			ViewList(value.data);
		}
	})
}
function list(data) {
	
}
</script>
</html>

servlet.java:

查看.

protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
//servlet成功生成,查看功能的后端Java 语言如下,前3行可解决中文乱码问题
		 request.setCharacterEncoding("utf-8");
		response.setCharacterEncoding("utf-8");
		response.setContentType("text/json;charset=utf-8");

		String sql = "select * from student";
		String sqlcount = "select count(*) from student";
		String[] colums = {"id","name","height","age"};
		String data = MysqlUtil.getJsonBySql(sqlcount, sql, colums);//注意引入mysqlutil文件
		System.out.println(data);

		response.getWriter().append(data);

	}

删除

protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
	//servlet成功生成,删除功能的后端Java 语言如下,前3行可解决中文乱码问题	
         request.setCharacterEncoding("utf-8");
		response.setCharacterEncoding("utf-8");
		response.setContentType("text/json;charset=utf-8");

		String id=request.getParameter("id");
		System.out.println(id);
		String sql="delete from student where id="+id;

		int i=MysqlUtil.del(sql);注意引入mysqlutil文件

		String json="";
		if(i==0) {
			json="{\"code\":\"200\",\"message\":\"删除失败\"}";
		}else {
			json="{\"code\":\"200\",\"message\":\"删除成功\"}";
		}
		response.getWriter().append(json);
	}

插入。

protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
//servlet成功生成,插入功能的后端Java 语言如下,前3行可解决中文乱码问题
	        request.setCharacterEncoding("utf-8");
		response.setCharacterEncoding("utf-8");
		response.setContentType("text/json;charset=utf-8");
		
		String name=request.getParameter("name");
		String height=request.getParameter("height");
		String age=request.getParameter("age");
		System.out.println(name+""+height+""+age);
		
		String insert ="insert into student(name,height,age) values('"+name+"',"+height+","+age+")"; 

		int i=MysqlUtil.add(insert);//注意引入mysqlutil文件

		String json="";
		if(i==0) {
			json="{\"code\":\"200\",\"message\":\"插入失败\"}";
		}else {
			json="{\"code\":\"200\",\"message\":\"插入成功\"}";
		}
		response.getWriter().append(json);
	}

更新(修改)

protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
	//servlet页生成,更新功能的后端Java 语言如下,前3行可解决中文乱码问题	
		request.setCharacterEncoding("utf-8");
		response.setCharacterEncoding("utf-8");
		response.setContentType("text/json;charset=utf-8");
		
		String id=request.getParameter("id");
		String name=request.getParameter("name");
		String height=request.getParameter("height");
		String age=request.getParameter("age");
		System.out.println(id+" "+name+" "+height+" "+age);
		String update="update student set name = '"+name+" ',height = "+height+",age = " +age+ " where id= "+ id;

		int i=MysqlUtil.update(update);//注意引入mysqlutil文件

		String json="";
		if(i==0) {
			json="{\"code\":\"200\",\"message\":\"修改失败\"}";
		}else {
			json="{\"code\":\"200\",\"message\":\"修改成功\"}";
		}
		response.getWriter().append(json);
	}

//1.注意mysqlutil文件,(你的有增删改查的 Java代码文件)。

//2.要有jdbc链接数据库的java 代码文件

  JavaScript知识库 最新文章
ES6的相关知识点
react 函数式组件 & react其他一些总结
Vue基础超详细
前端JS也可以连点成线(Vue中运用 AntVG6)
Vue事件处理的基本使用
Vue后台项目的记录 (一)
前后端分离vue跨域,devServer配置proxy代理
TypeScript
初识vuex
vue项目安装包指令收集
上一篇文章      下一篇文章      查看所有文章
加:2022-02-14 21:02:55  更:2022-02-14 21:03:34 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/24 11:28:11-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码