04 2020 档案

摘要:1、启动redis服务:redis-server 2、连接redis客户端:redis-cli -h host(如果是默认端口号和没有密码可以这么写,如果有的话是这样的:redis-cli -h host -p port -a password) 3、查看redis中所有数据:keys *,如果这个 阅读全文
posted @ 2020-04-30 15:16 乔儿 阅读(239) 评论(0) 推荐(0) 编辑
摘要:行内表单, 当垂直方向空间受限且表单较简单时,可以在一行内放置表单。 <el-form :inline="true" :model="formInline" class="demo-form-inline"> <el-form-item label="审批人"> <el-input v-model= 阅读全文
posted @ 2020-04-29 15:36 乔儿 阅读(8284) 评论(0) 推荐(0) 编辑
摘要:<script> import axios from 'axios' export default { name: 'Configuration', data() { return { data: { pathBy: '', useful: '', }, instance: null, } }, m 阅读全文
posted @ 2020-04-29 15:29 乔儿 阅读(737) 评论(0) 推荐(0) 编辑
摘要:Not Found The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again. 这个是前端接口报错,报错原因是:接口后 阅读全文
posted @ 2020-04-29 10:48 乔儿 阅读(4464) 评论(0) 推荐(0) 编辑
摘要:1 启动:nginx 2 停止:nginx -s stop 3 重启:nginx -s reload 阅读全文
posted @ 2020-04-28 10:40 乔儿 阅读(127) 评论(0) 推荐(0) 编辑
摘要:1、添加忽略文件 在git根目录添加.gitignore文件,里面写出你要添加的文件(包括真实路径),然后把该文件添加到远程仓库里面,注意了,在使用git add时,不能直接用git add *,这样无法添加进去,因为git把.gitignore文件识别为未跟踪文件,如要使用git add .git 阅读全文
posted @ 2020-04-27 11:10 乔儿 阅读(197) 评论(0) 推荐(0) 编辑
摘要:this.$options.methods.tip(); 阅读全文
posted @ 2020-04-23 17:09 乔儿 阅读(4164) 评论(3) 推荐(0) 编辑
摘要:报错信息:Access to XMLHttpRequest at 'http://127.0.0.1:3652/' from origin 'http://localhost:8080' has been blocked by CORS policy: No 'Access-Control-Allo 阅读全文
posted @ 2020-04-20 19:43 乔儿 阅读(1588) 评论(0) 推荐(0) 编辑
摘要:这个原因请参考https://jingyan.baidu.com/article/63f236287b53390209ab3d53.html,http://www.baiyunxitong.com/windows7/3222.html 具体表现就是:用uefi引导后在uefi里面找不到硬盘启动项,但 阅读全文
posted @ 2020-04-18 16:12 乔儿 阅读(2916) 评论(0) 推荐(0) 编辑
摘要:1、创建项目:vue init webpack program 2、进入项目文件夹:cd program 3、启动vue项目:npm run dev 阅读全文
posted @ 2020-04-16 15:11 乔儿 阅读(135) 评论(0) 推荐(0) 编辑
摘要:screen -S name 建立一个会话,在这个会话里面可以新建会话,就是执行各种程序的指令(例如:python3 name.py) Ctrl+a和d 从当前运行的会话中退出来,就是后台继续运行程序(按住ctrl,然后再按住a,再按住d) screen -ls 查看所有的会话(20529.qly 阅读全文
posted @ 2020-04-08 12:17 乔儿 阅读(522) 评论(0) 推荐(0) 编辑
摘要:import time import datetime # 今天日期 today = datetime.date.today() # 昨天时间 yesterday = today - datetime.timedelta(days=1) # 明天时间 tomorrow = today + datet 阅读全文
posted @ 2020-04-03 11:39 乔儿 阅读(544) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示