美文网首页
四、Web开发(7)

四、Web开发(7)

作者: 吴国友 | 来源:发表于2018-05-01 16:12 被阅读11次

7)、CRUD-员工修改

修改添加二合一表单

<!--需要区分是员工修改还是添加;-->
<form th:action="@{/emp}" method="post">
    <!--发送put请求修改员工数据-->
    <!--
1、SpringMVC中配置HiddenHttpMethodFilter;(SpringBoot自动配置好的)
2、页面创建一个post表单
3、创建一个input项,name="_method";值就是我们指定的请求方式
-->
    <input type="hidden" name="_method" value="put" th:if="${emp!=null}"/>
    <input type="hidden" name="id" th:if="${emp!=null}" th:value="${emp.id}">
    <div class="form-group">
        <label>LastName</label>
        <input name="lastName" type="text" class="form-control" placeholder="zhangsan" th:value="${emp!=null}?${emp.lastName}">
    </div>
    <div class="form-group">
        <label>Email</label>
        <input name="email" type="email" class="form-control" placeholder="zhangsan@atguigu.com" th:value="${emp!=null}?${emp.email}">
    </div>
    <div class="form-group">
        <label>Gender</label><br/>
        <div class="form-check form-check-inline">
            <input class="form-check-input" type="radio" name="gender" value="1" th:checked="${emp!=null}?${emp.gender==1}">
            <label class="form-check-label">男</label>
        </div>
        <div class="form-check form-check-inline">
            <input class="form-check-input" type="radio" name="gender" value="0" th:checked="${emp!=null}?${emp.gender==0}">
            <label class="form-check-label">女</label>
        </div>
    </div>
    <div class="form-group">
        <label>department</label>
        <!--提交的是部门的id-->
        <select class="form-control" name="department.id">
            <option th:selected="${emp!=null}?${dept.id == emp.department.id}" th:value="${dept.id}" th:each="dept:${depts}" th:text="${dept.departmentName}">1</option>
        </select>
    </div>
    <div class="form-group">
        <label>Birth</label>
        <input name="birth" type="text" class="form-control" placeholder="zhangsan" th:value="${emp!=null}?${#dates.format(emp.birth, 'yyyy-MM-dd HH:mm')}">
    </div>
    <button type="submit" class="btn btn-primary" th:text="${emp!=null}?'修改':'添加'">添加</button>
</form>

8)、CRUD-员工删除

<tr th:each="emp:${emps}">
    <td th:text="${emp.id}"></td>
    <td>[[${emp.lastName}]]</td>
    <td th:text="${emp.email}"></td>
    <td th:text="${emp.gender}==0?'女':'男'"></td>
    <td th:text="${emp.department.departmentName}"></td>
    <td th:text="${#dates.format(emp.birth, 'yyyy-MM-dd HH:mm')}"></td>
    <td>
        <a class="btn btn-sm btn-primary" th:href="@{/emp/}+${emp.id}">编辑</a>
        <button th:attr="del_uri=@{/emp/}+${emp.id}" class="btn btn-sm btn-danger deleteBtn">删除</button>
    </td>
</tr>


<script>
    $(".deleteBtn").click(function(){
        //删除当前员工的
        $("#deleteEmpForm").attr("action",$(this).attr("del_uri")).submit();
        return false;
    });
</script>

相关文章

  • 四、Web开发(7)

    7)、CRUD-员工修改 修改添加二合一表单 8)、CRUD-员工删除

  • 解析 Angular 7 的十大特性

    Angular 是最流行的 Web 应用程序开发框架之一。随着 Angular 7 的发布,它为 Web 开发人员...

  • 7 个网站将改变您进行 Web 开发的方式

    在本文中,我们将介绍 7 个最好的 Web 开发网站,它们将改变您进行 Web 开发的方式。这对于正在开发网站并且...

  • 四、Web开发(1)

    1、简介 使用SpringBoot; 1)、创建SpringBoot应用,选中我们需要的模块; 2)、Spring...

  • 四、Web开发(2)

    3、模板引擎 JSP、Velocity、Freemarker、Thymeleaf SpringBoot推荐的Thy...

  • 四、Web开发(11)

    3)、替换为其他嵌入式Servlet容器 默认支持: Tomcat(默认使用) Jetty Undertow

  • 四、Web开发(3)

    4、SpringMVC自动配置 https://docs.spring.io/spring-boot/docs/1...

  • 四、Web开发(4)

    6、RestfulCRUD 1)、默认访问首页 2)、国际化 1)、编写国际化配置文件; 2)、使用Resourc...

  • 四、Web开发(5)

    3)、登陆 开发期间模板引擎页面修改以后,要实时生效 1)、禁用模板引擎的缓存 2)、页面修改完成以后ctrl+f...

  • 四、Web开发(8)

    7、错误处理机制 1)、SpringBoot默认的错误处理机制 默认效果: ​ 1)、浏览器,返回一个...

网友评论

      本文标题:四、Web开发(7)

      本文链接:https://www.haomeiwen.com/subject/cltfrftx.html