摘要: pom.xml <!--druid 配置文件数据库密码加密 --> <dependency> <groupId>com.alibaba</groupId> <artifactId>druid-spring-boot-starter</artifactId> <version>1.2.11</vers 阅读全文
posted @ 2023-06-19 13:21 树之下 阅读(96) 评论(0) 推荐(0) 编辑
摘要: spring.profiles.active: @profiles.active@ pom.xml <profiles> <profile> <!-- 开发环境 --> <id>dev</id> <properties> <profiles.active>dev</profiles.active> 阅读全文
posted @ 2023-06-19 13:10 树之下 阅读(45) 评论(0) 推荐(0) 编辑
摘要: axios简单使用例子 import axios from 'axios' export default { name: 'Test', data(){ return{ msg:"Welcome" } }, mounted() { //get axios.get( "/api/qc/sfaa-t/C 阅读全文
posted @ 2022-12-26 13:50 树之下 阅读(1203) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2022-12-22 14:24 树之下 阅读(10) 评论(0) 推荐(0) 编辑
摘要: //查看路径信息 npm config ls npm config set prefix "D:\Program Files\nodejs\node_gobal" npm config set cache "D:\Program Files\nodejs\node_cache" //yarn yar 阅读全文
posted @ 2022-12-22 13:17 树之下 阅读(73) 评论(0) 推荐(0) 编辑
摘要: 夫传子 父组件代码 子组件代码 效果展示 <template> <h1>{{ msg }}</h1> </template> <script> export default { name: 'HelloWorld', props: { msg:{ type:String, default:"" } 阅读全文
posted @ 2022-12-22 10:58 树之下 阅读(13) 评论(0) 推荐(0) 编辑
摘要: 前言 相关官方文档:https://cn.vuejs.org/guide/introduction.html https://cli.vuejs.org/zh/guide/ 创建vue-cli项目 vue create test1 后续选择 项目目录 项目目录结构 components:一些复用组件 阅读全文
posted @ 2022-12-22 10:35 树之下 阅读(17) 评论(0) 推荐(0) 编辑
摘要: 下载链接 链接:https://pan.baidu.com/s/1YBRYbIK9Y5i0Vgr5vBSb8w 提取码:p3kr 文件解压后放到指定目录 D:\Program Files\maven\apache-maven-3.8.4 配置环境变量 MAVEN_HOME = D:\Program 阅读全文
posted @ 2022-12-15 09:33 树之下 阅读(46) 评论(0) 推荐(0) 编辑
摘要: 傻瓜式linux安装流程:https://blog.csdn.net/rod0320/article/details/119455271 存储过程 循环 -- 循环while create or replace procedure proc_test_while is i number; begin 阅读全文
posted @ 2022-05-23 12:07 树之下 阅读(45) 评论(0) 推荐(0) 编辑
摘要: $directory_arr = scandir($path); unset($directory_arr[0]);//删除 . unset($directory_arr[1]);//删除 .. $directory_arr = array_values($directory_arr);//重置in 阅读全文
posted @ 2022-03-17 13:08 树之下 阅读(54) 评论(0) 推荐(0) 编辑