上一页 1 ··· 18 19 20 21 22 23 24 25 26 ··· 46 下一页
摘要: 1.使用cmd创建 1.1 管理员方式打开cmd,安装官网安装vue-cli https://cli.vuejs.org/zh/guide/installation.html 1.2 安装成功,提示无vue命令 npm config list 找到prefix 吧该路径复制此路径添加到系统变量Pat 阅读全文
posted @ 2022-12-01 19:19 lwx_R 阅读(49) 评论(0) 推荐(0)
摘要: 1.安装 npm install axios <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <script type="text/javascript" src="js/axios.min.js"></script> <script src 阅读全文
posted @ 2022-12-01 19:05 lwx_R 阅读(25) 评论(0) 推荐(0)
摘要: <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <script src="js/vue.js" type="text/javascript" charset="utf-8"></script> <title></title> </head> 阅读全文
posted @ 2022-12-01 19:04 lwx_R 阅读(17) 评论(0) 推荐(0)
摘要: <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <script src="js/vue.js" type="text/javascript" charset="utf-8"></script> <title></title> </head> 阅读全文
posted @ 2022-12-01 19:04 lwx_R 阅读(49) 评论(0) 推荐(0)
摘要: <!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <title></title> </head> <body> <!-- 数据渲染 --> <div id="app"> <!-- 模板语法 --> <div> <span>{{ messag 阅读全文
posted @ 2022-12-01 18:56 lwx_R 阅读(28) 评论(0) 推荐(0)
摘要: 1.pom.xml <!-- redis--> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-redis</artifactId> </dependency> 阅读全文
posted @ 2022-11-28 16:35 lwx_R 阅读(246) 评论(0) 推荐(0)
摘要: 使用fastJson <dependency> <groupId>com.alibaba</groupId> <artifactId>fastjson</artifactId> <version>1.2.28</version> </dependency> 1.get json数据 @Overrid 阅读全文
posted @ 2022-11-26 14:00 lwx_R 阅读(327) 评论(0) 推荐(0)
摘要: 1.使用redis连接池 //连接池对象 JedisPool jedisPool = new JedisPool(new JedisPoolConfig(),"localhost"); //从连接池获取对象 Jedis jedis = jedisPool.getResource(); 使用Jedis 阅读全文
posted @ 2022-11-26 11:57 lwx_R 阅读(96) 评论(0) 推荐(0)
摘要: 1.下载 jedis.jar 2. 五个数据类型String List Hash Set SortedSet 操作 public class RedisTest { public static void main(String[] args) throws InterruptedException 阅读全文
posted @ 2022-11-24 19:19 lwx_R 阅读(46) 评论(0) 推荐(0)
摘要: 1.下载编译 https://github.com/mythz/redis-windows 需要下载后,自己编译生成exe文件 选择已经打包好的zip包使用 2.运行 2.1 运行服务器端 D:\Code\Redis>redis-server.exe 2.2 运行客户端 D:\Code\Redis> 阅读全文
posted @ 2022-11-24 19:11 lwx_R 阅读(31) 评论(0) 推荐(0)
上一页 1 ··· 18 19 20 21 22 23 24 25 26 ··· 46 下一页