博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Springboot——restful实践前端
阅读量:3899 次
发布时间:2019-05-23

本文共 4092 字,大约阅读时间需要 13 分钟。

Springboot——restful实践前端

参考

项目结构

在这里插入图片描述

commons

    
Restful测试

admin

  • login.html
  • index.html
  • list.html

添加新用户

# 姓名 性别 出生日 操作
[[${user.username}]] 编辑
  • add.html
			

css

  • signin.css
html,body {
height: 100%;}body {
display: -ms-flexbox; display: -webkit-box; display: flex; -ms-flex-align: center; -ms-flex-pack: center; -webkit-box-align: center; align-items: center; -webkit-box-pack: center; justify-content: center; padding-top: 40px; padding-bottom: 40px; /*background-color: #f5f5f5;*/}.form-signin {
width: 100%; max-width: 330px; padding: 15px; margin: 0 auto;}.form-signin .checkbox {
font-weight: 400;}.form-signin .form-control {
position: relative; box-sizing: border-box; height: auto; padding: 10px; font-size: 16px;}.form-signin .form-control:focus {
z-index: 2;}.form-signin input[type="email"] {
margin-bottom: -1px; border-bottom-right-radius: 0; border-bottom-left-radius: 0;}.form-signin input[type="password"] {
margin-bottom: 10px; border-top-left-radius: 0; border-top-right-radius: 0;}
  • dashboard.css
body {
font-size: .875rem;}.feather {
width: 16px; height: 16px; vertical-align: text-bottom;}/* * Sidebar */.sidebar {
position: fixed; top: 0; bottom: 0; left: 0; z-index: 100; /* Behind the navbar */ padding: 0; box-shadow: inset -1px 0 0 rgba(0, 0, 0, .1);}.sidebar-sticky {
position: -webkit-sticky; position: sticky; top: 48px; /* Height of navbar */ height: calc(100vh - 48px); padding-top: .5rem; overflow-x: hidden; overflow-y: auto; /* Scrollable contents if viewport is shorter than content. */}.sidebar .nav-link {
font-weight: 500; color: #333;}.sidebar .nav-link .feather {
margin-right: 4px; color: #999;}.sidebar .nav-link.active {
color: #007bff;}.sidebar .nav-link:hover .feather,.sidebar .nav-link.active .feather {
color: inherit;}.sidebar-heading {
font-size: .75rem; text-transform: uppercase;}/* * Navbar */.navbar-brand {
padding-top: .75rem; padding-bottom: .75rem; font-size: 1rem; background-color: rgba(0, 0, 0, .25); box-shadow: inset -1px 0 0 rgba(0, 0, 0, .25);}.navbar .form-control {
padding: .75rem 1rem; border-width: 0; border-radius: 0;}.form-control-dark {
color: #fff; background-color: rgba(255, 255, 255, .1); border-color: rgba(255, 255, 255, .1);}.form-control-dark:focus {
border-color: transparent; box-shadow: 0 0 0 3px rgba(255, 255, 255, .25);}/* * Utilities */.border-top {
border-top: 1px solid #e5e5e5; }.border-bottom {
border-bottom: 1px solid #e5e5e5; }

问题日志

  • 使用input type = data 传送数据给后端出错
	1. 传送数据到后台的格式为yyyy-mm-dd	2. 页面显示效果 yyyy/mm/dd	3.  value 设置格式为yyyy-mm-dd

转载地址:http://vhden.baihongyu.com/

你可能感兴趣的文章
HTML我的家乡杭州网页设计作业源码(div+css)~ HTML+CSS网页设计期末课程大作业 ~ web前端开发技术 ~ web课程设计网页规划与设计 ~HTML期末大作业
查看>>
HTML网页设计期末课程大作业~动漫樱桃小丸子5页表格div+css学生网页设计作业源码
查看>>
HTML学生网页设计作业成品~化妆品官方网站设计与实现(HTML+CSS+JS)共8个页面
查看>>
web课程设计网页规划与设计~在线阅读小说网页共6个页面(HTML+CSS+JavaScript+Bootstrap)
查看>>
HTML期末大作业~棋牌游戏静态网站(6个页面) HTML+CSS+JavaScript
查看>>
XmlValidationModeDetector源码分析
查看>>
解析 xml 为Document
查看>>
中国银行2013年校园招聘机试回忆录(综合部分专业题 考点)
查看>>
广发银行2013校园招聘笔试回忆录
查看>>
Android canvas rotate():平移旋转坐标系至任意原点任意角度-------附:android反三角函数小结...
查看>>
Matlab读取avi视频并播放 你必须要知道的
查看>>
word字体大小与公式编辑器字体对照表
查看>>
visio画图-----如何克服两箭头交叉变形 及 箭头自动重绘?
查看>>
Android开发:安装NDK,移植OpenCV2.3.1,JNI调用OpenCV全过程
查看>>
“金9银10”2020年JVM高频率面试题整理,技术提升就差一个点!
查看>>
简简单单的分享2020常见的MySQL面试题MySQL与答案整理
查看>>
听说只有大厂的Android工程师才能全答对这20道题?我看你在吹牛哦!
查看>>
武功秘籍之 Redis 面试题全掌握,学完马上找面试官对线!
查看>>
50道!2020年!!MySQL高频数据库面试题解析,你都懂了吗?
查看>>
如何用Spring Boot加密配置文件中的特殊内容示例代码详解
查看>>