Springboot简易实战-添加和修改员工功能实现

Springboot简易实战-添加和修改员工功能实现

一、添加员工实现

1.前端首页设置添加员工按钮:接收后端请求
<h2><a class="btn btn-sm btn-success" th:href="@{/emp/addEmp}">添加员工</a></h2>
2.后端跳转请求
@Autowired
private DepartmentDao departmentDao;

@GetMapping("emps/add")
public String toAddPage(Model model){
   
    Collection<Department> departments = departmentDao.getDepartments();
    model.addAttribute("departments",departments);
    return "emps/addEmp";
}
3.创建添加员工的前端页面
<!DOCTYPE html>
<!-- saved from url=(0052)http://getbootstrap.com/docs/4.0/examples/dashboard/ -->
<html lang="en" xmlns:th="http://www.thymeleaf.org">

	<head>
		<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
		<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
		<meta name="description" content="">
		<meta name="author" content="">

		<title>Dashboard Template for Bootstrap</title>
		<!-- Bootstrap core CSS -->
		<link href="/css/bootstrap.min.css" rel="stylesheet">

		<!-- Custom styles for this template -->
		<link href="/css/dashboard.css" rel="stylesheet">
		<style type="text/css">
			/* Chart.js */
			
			@-webkit-keyframes chartjs-render-animation {
     
				from {
     
					opacity: 0.99
				}
				to {
     
					opacity: 1
				}
			}
			
			@keyframes chartjs-render-animation {
     
				from {
     
					opacity: 0.99
				}
				to {
     
					opacity: 1
				}
			}
			
			.chartjs-render-monitor {
     
				-webkit-animation: chartjs-render-animation 0.001s;
				animation: chartjs-render-animation 0.001s;
			}
		</style>
	</head>

	<body>
		<div th:replace="~{commons/commons::topbar}"></div>
		<div class="container-fluid">
			<div class="row">
				<main role="main" class="col-md-9 ml-sm-auto col-lg-10 pt-3 px-4">
				<div th:replace="~{commons/commons::sidebar}"></div>
				<form action="">
				<div class="form-group">
				<label>LastName</label>
				<input type="text" name="lastName" class="form-control" placeholder="大力">
				</div>
				<div class="form-group">
				<label>Email</label>
				<input type="email" name="email" class="form-control" placeholder="1231241244@qq.com">
				</div>
  • 0
    点赞
  • 4
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值