2021.06.02 Tom增删改查

代码

<%@ page import="Service.ArticleService" %><%--
Created by IntelliJ IDEA.
User: Administrator
Date: 2021/6/2
Time: 19:40
To change this template use File | Settings | File Templates.
--%>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
<title>Title</title>
</head>
<body>

<%
// 获取要删除的文章id
String id = request.getParameter("id");
// 返回值 = 调用业务层的删除文章方法
ArticleService articleService = new ArticleService();
int i = articleService.delete(id);
// 判断返回值 如果返回值大于0,代表删除成功。页面跳转(跳转到列表页show.jsp)
if (i > 0) {
response.sendRedirect("show.jsp");
}
// 删除不成功,做一个错误页面,提示删除的不成功,也可以把错误信息返还给其它页面
else {
out.print("删除失败");
}


%>

</body>
</html>
上一篇:企业邮箱搬家功能,企业邮箱如何设置新成员?


下一篇:08 学生课程分数的Spark SQL分析