上一页 1 2 3 4 5 6 7 ··· 11 下一页
摘要: (按千峰教育的2019GO视频学习) 与java相同的语法没有记录 变量 定义变量 1.var 变量名 变量类型 如:var abc int abc = 3 2.var 变量名 如:var abc abc = 3 3.变量名 := 赋值 如:abc :=3 也可以同时定义多个变量 如: var ab 阅读全文
posted @ 2021-04-06 14:41 小白小白小白小白 阅读(60) 评论(0) 推荐(0) 编辑
摘要: 1.下载go环境包 https://golang.google.cn/dl/ 找到对应版本下载 2.配置环境变量 将下载包中的bin配置到环境变量 如win下我在path中配置D:\WorkApp\golang\go\bin 再新建一个作为项目工作目录 也配置到环境变量中 该目录中新建src目录 作 阅读全文
posted @ 2021-04-04 22:00 小白小白小白小白 阅读(178) 评论(0) 推荐(0) 编辑
摘要: 方式1 在/etc/rc.local文件中 有的是在cd /etc/rc.d/rc.local文件中 添加自启动命令 把启动的命令写在下一行就行了 方式2 /etc/init.d目录下添加自启动脚本 即把脚本文件丢在这个路径下 再systemctl enable 脚本名称 阅读全文
posted @ 2021-04-01 14:11 小白小白小白小白 阅读(148) 评论(0) 推荐(0) 编辑
摘要: 基本概念:index库>type表>document文档 即index相当于db库 type类似表 document就是表中每行json数据 es保存的数据是json类型 结构示意图如下 1.检索es信息 (1)GET /_cat/nodes:查看所有节点 如:http://192.168.56.1 阅读全文
posted @ 2021-04-01 02:05 小白小白小白小白 阅读(130) 评论(0) 推荐(0) 编辑
摘要: 1)apt-get install mailutils //安装mail命令 2)mail -s "Hello from Linux Server by shell" shihaibin@126.com //测试 //出现报错 cannot send message: Process exited 阅读全文
posted @ 2021-03-26 11:46 小白小白小白小白 阅读(391) 评论(0) 推荐(0) 编辑
摘要: 主要关注/etc/nginx/conf/下的nginx.conf文件和 /etc/nginx/conf/conf.d/下的 *.conf nginx.conf中主要http配置块 //upstream_name名称自定义 作为负载均衡 //include中配置文件一般是server配置项 http 阅读全文
posted @ 2021-03-18 00:10 小白小白小白小白 阅读(58) 评论(0) 推荐(0) 编辑
摘要: 逻辑删除 删除操作若不想数据库中数据真正被删除 而是用一个标志位字段来判断 yml中配置 mybatis-plus: mapper-locations: classpath:/mapper/**/*.xml global-config: db-config: id-type: auto logic- 阅读全文
posted @ 2021-03-15 16:10 小白小白小白小白 阅读(41) 评论(0) 推荐(0) 编辑
摘要: 1.安装配置 项目导入vue.js//类似jquery.js<script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script> //不建议这样用 现在开发基本用npm来管理依赖 代码提示插件 Vue 2 Snippets npm管 阅读全文
posted @ 2021-03-10 03:28 小白小白小白小白 阅读(50) 评论(0) 推荐(0) 编辑
摘要: npm config set registry http://registry.npm.taobao.org/ //配置镜像源npm get registry //当前镜像源 //创建vue项目 安装npm install webpack -g 安装vue脚手架npm install -g @vue 阅读全文
posted @ 2021-03-10 01:57 小白小白小白小白 阅读(277) 评论(0) 推荐(0) 编辑
摘要: 1)let & var 1.var可以多次声明变量 let不行 例:let a=1;let a=2;报错 2.var可作用到{}外 let不行 例: {let a=1;}console.log(a);取不到a值 3.var定义之前可以使用,let定义之前不可使用 例:console.log(a);v 阅读全文
posted @ 2021-03-09 11:19 小白小白小白小白 阅读(59) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 11 下一页