发表于: 2021-11-21 23:40:57

2 1584


今天完成的事:

  • 17.用Spring messageSource 配置错误信息,在接口处做校验,根据错误的类型返回对应的错误信息
  • 18.配置Nginx,配置域名指向Resin,本地配置Host,通过域名在浏览器,
  • Postman等测试数据
  • 写简单的form用户登陆页面
  • 今天遇到的问题:写的表单在客户端删除不了数据,用postman 可以删掉这条数据
  • <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
    <%
     String path = request.getContextPath();
     String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
    %>
    <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
    <html>
    <head>
    <base href="<%=basePath%>">

    <title>My JSP 'allUser.jsp' starting page</title>

    <meta http-equiv="pragma" content="no-cache">
    <meta http-equiv="cache-control" content="no-cache">
    <meta http-equiv="expires" content="0">
    <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
    <meta http-equiv="description" content="This is my page">
    <!--
     <link rel="stylesheet" type="text/css" href="styles.css">
     -->
     <script type="text/javascript" src="js/jquery-1.7.1.js"></script>
    <script type="text/javascript">
    function del(sid){
    $.get("<%=basePath%>user/delUser?sid="+sid,function(data){
    if("success"==data.result){
    alert("删除成功");
    window.location.reload();
    }else{alert("删除失败");}
    });
    }
    </script>
    </head>

    <body>
    <h6><a href="<%=basePath%>stu/toAddUser">添加用户</a></h6>
    <table border="1">
    <tbody>
    <tr>
    <th>sid</th>
    <th>姓名</th>
    <th>密码</th>
    <th>性别</th>
    <th>课程</th>
    <th>出生地</th>
    <th>操作</th>
    </tr>
    <c:if test="${!empty studentList}">
    <c:forEach items="${studentList}" var="student">
    <tr>
    <td>${student.sid}</td>
    <td>${student.sname}</td>
    <td>${student.password}</td>
    <td>${student.sex}</td>
    <td>${student.cid}</td>
    <td>${student.birthplace}</td>
    <td>
    <a href="<%=basePath%>stu/getUser?sid=${student.sid}">编辑</a>
    <a href="javascript:delet('${student.sid}')">删除</a>
    </td>
    </tr>
    </c:forEach>
    </c:if>
    </tbody>
    </table>
    </body>
    </html>

  • 在本地跳转页面没问题,项目部署到服务器跳转不能访问
  • 今天的收获:学会sprngmvc 国际化的相关知识  通过客户端对数据的增改删查
  • 明天的任务:总结任务2

返回列表 返回列表
评论

    分享到