1 2 3 4 5 ··· 21 下一页

[置顶] 前后端学习笔记目录

摘要: SSM框架: Mybatis Spring SpringMvc 高级篇: SpringBoot Spring Security Redis JTW 数据库: Mysql 其他: 简单Linux命令 web前端: html与css JavaScript JavaScriptES6 vue2与vue3 阅读全文

posted @ 2021-12-30 16:29 每天积极向上 阅读(318) 评论(0) 推荐(0) 编辑

2024年1月4日

vue3 setup函数之数据

摘要: setup中定义方法: export default { name: 'App', setup(){ //定义方法 function edit() { } return { //方法与数据,必须要返回出去,不然不起作用。 edit } } } setup中ref函数定义基本数据类型与对象数据类型: 阅读全文

posted @ 2024-01-04 12:32 每天积极向上 阅读(48) 评论(0) 推荐(0) 编辑

2024年1月2日

vue3 使用脚手架创建应用

摘要: 1.安装条件 已安装 18.0 或更高版本的 Node.js 2.安装 在你的目录下运行以下命令: vue create learn_vue3 选择安装vue3: 3.运行 npm run serve 阅读全文

posted @ 2024-01-02 12:45 每天积极向上 阅读(15) 评论(0) 推荐(0) 编辑

vue3 学习笔记目录

摘要: 1.创建 vue3 阅读全文

posted @ 2024-01-02 12:13 每天积极向上 阅读(4) 评论(0) 推荐(0) 编辑

2023年12月27日

vue2 自定义插件

摘要: 自定义插件的基本使用: let MyPlugin = {}; MyPlugin.install = function (Vue, options) { // 1. 添加全局方法或 property Vue.myGlobalMethod = function () { // 逻辑... } // 2. 阅读全文

posted @ 2023-12-27 16:17 每天积极向上 阅读(92) 评论(0) 推荐(0) 编辑

2023年12月3日

Jquery - 学习笔记

摘要: 1.Jquery的下载与安装 1.1 下载 https://jquery.com/ 1.2 安装 <!doctype html> <html lang="zh/cn"> <head> <meta charset="UTF-8"> <title>jquery learn</title> </head> 阅读全文

posted @ 2023-12-03 14:01 每天积极向上 阅读(11) 评论(0) 推荐(0) 编辑

2022年12月18日

Java 代码

摘要: AOP 日志:需引入aop-start,lombok或任何一个日志框架 import org.aspectj.lang.ProceedingJoinPoint; import org.aspectj.lang.annotation.*; import org.springframework.ster 阅读全文

posted @ 2022-12-18 11:56 每天积极向上 阅读(108) 评论(0) 推荐(0) 编辑

2022年12月17日

Http 请求头与响应头 全部字段

摘要: Http 请求头: Accept 浏览器通过这个头,告诉服务器它所支持的数据类型 Accept-Charset 浏览器通过这个头,告诉服务器它采用的字符集 Accept-Encoding 浏览器通过这个头,告诉服务器,它所支持的压缩格式 Accept-Language 浏览器通过这个头,告诉服务器, 阅读全文

posted @ 2022-12-17 16:28 每天积极向上 阅读(97) 评论(0) 推荐(0) 编辑

2022年12月16日

SSM常用注解与结构

摘要: Mybatis:(一级缓存与二级缓存) 注解:@param <select id="" parameterType="" resultType="" resultMap=""> ....select,update,insert,delete </select> 一对多与多对一: <resultMap 阅读全文

posted @ 2022-12-16 17:58 每天积极向上 阅读(21) 评论(0) 推荐(0) 编辑

2022年12月7日

Java - 变量

摘要: Java 数据类型分为基本数据类型与引用数据类型 1.基本数据类型 整数类型:byte,shrot,int,long byte 1个字节 范围 -128~127,shrot 2个字节,int 4个字节,long 8个字节 字面量默认为 int 类型,定义long类型时 要加L 如:"long id= 阅读全文

posted @ 2022-12-07 21:53 每天积极向上 阅读(11) 评论(0) 推荐(0) 编辑

2022年6月27日

解决跨域问题

摘要: 后端解决配置类: /** * 解决跨域问题 */ @Configuration public class CorsConfig implements WebMvcConfigurer { @Override public void addCorsMappings(CorsRegistry regis 阅读全文

posted @ 2022-06-27 11:26 每天积极向上 阅读(22) 评论(0) 推荐(0) 编辑

1 2 3 4 5 ··· 21 下一页

导航