easyui06(实现删除修改)

目录

一、前台开发

二、后台开发

bookList.jsp

<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
<%@include file="../../common/head.jsp" %>
<script>
	$(function(){
		$('#dg').datagrid({    
		    url:ctx+'/BookServlet',    
		    toolbar: '#tb',
		    pagination:true, //显示底部分页工具栏
		    singleSelect:true,//只能选择一行
		    columns:[[    
		    	//表格的结构,需要与实体类保持一致
		        {field:'id',title:'ID',width:100,align:'center'},    
		        {field:'bookname',title:'书本名称',width:100,align:'center'},    
		        {field:'price',title:'价格',width:100,align:'center'},
		        {field:'booktype',title:'类型',width:100,align:'center'} 
		    ]]    
		});  
		
		//给查询添加点击事件
		$("#qrybtn").click(function(){
			qry();
		});
		
		function qry(){
			//重载行
			$('#dg').datagrid("reload",{
				//拿到以前的值给文本框赋值
				bookName:$("#bookName").val()
			});
		};
		
		//增加书本
		$("#addBook").click(function() {
			openDialog();
		});
	 	
		//修改书本
		$("#updateBook").click(function(){
			let row = $('#dg').datagrid("getSelected");
			openDialog(row);
		});
		
		//删除书本
		$("#deleteBook").click(function(){
			let row = $('#dg').datagrid("getSelected");
			if(!row){
				$.messager.alert('提示', '请先选择你要删除的书籍');
				return;
			}
			let id=row.id;
			$.messager.confirm('确认','您确认想要删除记录吗?',function(r){    
			    if (r){   
			    	$.ajax({
						url:ctx + "/bookDeleteServlet",
						type:'post',
						data: {
							id:id
						},
						dataType:'json',
						success:function(resp){
							if(resp.success){
								$.messager.alert('提示', '操作成功');
								qry();
							}else{
								$.messager.alert('警告', '操作失败');
							}
						}
					});
			    }    
			});  
		})
		
		function openDialog(row){
			let title="增加书本信息";
			let action = "/bookAddServlet";
			if(row){
				title = "修改书本信息";
				action = "/bookUpdateServlet";
			}
			
			$("#editDlalog").dialog({    
			    title:title,    
			    width: 300,    
			    height: 250,    
			    closed: false,    
			    cache: false,    
			    href: 'editBook.jsp',    
			    modal: true,
			    buttons:[{
					text:'保存',
					iconCls:'icon-save',
					handler:function(){
						$.ajax({
							url:ctx + action,
							type:'post',
							data: $("#bookForm").serialize(),
							dataType:'json',
							success:function(resp){
								if(resp.success){
									$.messager.alert('提示', '操作成功');
									$("#editDlalog").dialog("close");
									qry();
								}else{
									$.messager.alert('警告', '操作失败');
								}
							}
						});
					}
				},{
					text:'关闭',
					iconCls:'icon-cancel',
					handler:function(){
						$("#editDlalog").dialog("close");
					}
				}],
				onLoad: function() {
					if(row) {
						$("#bookForm").form("reset");//重置
				    	$("#bookForm").form("load", row);//加载数据
					}
				}
			});   
		}
		
		
	});
</script>
</head>
<body>
<form style="margin-top:20px;">
	<label for="name">书籍名称:</label>  
	<input id="bookName" class="easyui-textbox" data-options="" style="width:300px;">
	<a id="qrybtn" href="#" class="easyui-linkbutton" data-options="iconCls:'icon-search'">查询</a>  
</form>
 
<div style="margin-top:10px;">
	<table id="dg"></table>  
</div>
 
<!-- 列表上方的工具条 -->
<div id="tb" style="text-align:right;">
	<a href="#" id="addBook"    class="easyui-linkbutton" data-options="iconCls:'icon-add',plain:true"></a>
	<a href="#" id="updateBook" class="easyui-linkbutton" data-options="iconCls:'icon-edit',plain:true"></a>
	<a href="#" id="deleteBook" class="easyui-linkbutton" data-options="iconCls:'icon-remove',plain:true"></a>
</div>
 
<!-- 给弹出窗口定义一个容器,并默认为隐藏,在点击后再显示 -->
<div id="editDlalog" style="display:none;"></div>  
</body>
</html>

editBook.jsp

<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<form id="bookForm">
		<input type="hidden" name="id" id="id"/>
		<div style="margin-top: 10px;margin-left:10px;">   
	        <label for="name">书本名称:</label>   
	        <input class="easyui-textbox" type="text" name="bookname" id="bookname" data-options="required:true" />   
	    </div>   
	    <div style="margin-top: 10px;margin-left:10px;">   
	        <label for="price">书本价格:</label>   
	       <input class="easyui-textbox" type="text" name="price" id="price" data-options="required:true" /> 
	    </div>
	  <div style="margin-top: 10px;margin-left:10px;">    
	        <label for="booktype">书本类型:</label>   
	        <input class="easyui-textbox" type="text" name="booktype" id="booktype" data-options="required:true" /> 
	    </div>  
</form>

 二、后台开发

BookService

 @Override
	public void updateBook(Book book) {
		// TODO Auto-generated method stub
		bd.updateBook(book);
	}
 
	@Override
	public void delBook(Integer id) {
		// TODO Auto-generated method stub
		bd.delBook(id);
	}

 BookUpdateServlet

package com.zking.euidemo.servlet;
 
import java.io.IOException;
 
import java.io.PrintWriter;
import java.math.BigDecimal;
import java.util.HashMap;
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.alibaba.fastjson.JSON;
import com.zking.euidemo.entity.Book;
import com.zking.euidemo.service.BookService;
import com.zking.euidemo.service.IBookService;
@WebServlet("/bookUpdateServlet")
public class BookUpdateServlet extends HttpServlet{
	
	private IBookService service= new BookService();
	
	@Override
	protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
		doPost(req, resp);
	}
	
	@Override
	protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
		//设置字符编码方式
		req.setCharacterEncoding("utf-8");
		resp.setContentType("application/json; charset=utf-8");
		Map<String, Object> rv = new HashMap<>();
		try {
			String id =req.getParameter("id");
			String bookname = req.getParameter("bookname");
			String price = req.getParameter("price");
			String booktype = req.getParameter("booktype");
			Book book = new Book();
			book.setId(Integer.parseInt(id));
			book.setBookname(bookname);
			book.setPrice(new BigDecimal(price));
			book.setBooktype(booktype);
			
			service.updateBook(book);
			rv.put("success", true);
		} catch (Exception e) {
			e.printStackTrace();
			rv.put("success", false);
		}
		
		PrintWriter out = resp.getWriter();
		String json=JSON.toJSONString(rv);
		out.write(json);
		out.flush();
		out.close();
	}
}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值