摘要: 摘自: https://blog.csdn.net/a654540233/article/details/107245152/ this.$nextTick 将回调延迟到下次DOM更新循环之后执行。在修改数据之后立即使用它,然后等待DOM更新。 阅读全文
posted @ 2021-05-15 11:04 王^.^令 阅读(69) 评论(0) 推荐(0)
摘要: javascript:document.body.contentEditable='true'; 阅读全文
posted @ 2021-04-16 11:35 王^.^令 阅读(205) 评论(0) 推荐(0)
摘要: <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-jpa</artifactId> </dependency> <dependenc 阅读全文
posted @ 2021-04-14 20:48 王^.^令 阅读(79) 评论(0) 推荐(0)
摘要: package com.circle.controller; import com.circle.entity.UserBean; import org.springframework.web.bind.annotation.GetMapping; import org.springframewor 阅读全文
posted @ 2021-04-09 09:31 王^.^令 阅读(212) 评论(0) 推荐(0)
摘要: Thymeleaf 是一个模板引擎。适合在web程序中为HTML5提供服务 命名空间 xmlns:th="http://www.thymeleaf.org" Thymeleaf标准表达式 简单表达式 变量表达式: $ model.addAttribute("name", "李四"); <p>我的名字 阅读全文
posted @ 2021-04-09 08:41 王^.^令 阅读(355) 评论(0) 推荐(0)
摘要: 百度百科 Nginx (engine x) 是一个高性能的HTTP和反向代理web服务器,同时也提供了IMAP/POP3/SMTP服务。Nginx是由伊戈尔·赛索耶夫为俄罗斯访问量第二的Rambler.ru站点(俄文:Рамблер)开发的,第一个公开版本0.1.0发布于2004年10月4日。 其将 阅读全文
posted @ 2021-04-05 13:49 王^.^令 阅读(70) 评论(0) 推荐(0)
摘要: 安装配置MySQL 官网下载MySQL https://www.oracle.com/index.html 选择对应系统和版本(推荐5.7最新) Windows Linux推荐 安装 将压缩包解压至相应目录 以管理员身份打开cmd 进入 mysql的bin目录 输入 mysqld --install 阅读全文
posted @ 2021-04-04 17:56 王^.^令 阅读(66) 评论(0) 推荐(0)
摘要: Redis简介 redis是一个完全开源的高性能key-value数据库。支持数据的持久化,可以将内存中的数据持久化到我们的以盘中 数据结构 string list set zset hash Redis的安装 String类型 -- 字符串操作 127.0.0.1:6379> SET name c 阅读全文
posted @ 2021-04-04 15:32 王^.^令 阅读(68) 评论(0) 推荐(0)
摘要: spring: mail: username: 2603820757@qq.com password: okfutaifmatcdjeh host: smtp.qq.com properties: #开启加密验证 mail: smtp: ssl: enable: true 简单邮件 @Autowir 阅读全文
posted @ 2021-03-28 08:22 王^.^令 阅读(59) 评论(0) 推荐(0)
摘要: 定义拦截器 package com.circle.interceptor; import org.springframework.web.servlet.HandlerInterceptor; import org.springframework.web.servlet.ModelAndView; 阅读全文
posted @ 2021-03-14 23:34 王^.^令 阅读(86) 评论(0) 推荐(0)