上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 19 下一页
摘要: <script> import axios from 'axios' export default { name: 'Configuration', data() { return { data: { pathBy: '', useful: '', }, instance: null, } }, m 阅读全文
posted @ 2020-04-29 15:29 乔儿 阅读(726) 评论(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 乔儿 阅读(4354) 评论(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 乔儿 阅读(191) 评论(0) 推荐(0) 编辑
摘要: this.$options.methods.tip(); 阅读全文
posted @ 2020-04-23 17:09 乔儿 阅读(4160) 评论(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 乔儿 阅读(1497) 评论(0) 推荐(0) 编辑
摘要: 这个原因请参考https://jingyan.baidu.com/article/63f236287b53390209ab3d53.html,http://www.baiyunxitong.com/windows7/3222.html 具体表现就是:用uefi引导后在uefi里面找不到硬盘启动项,但 阅读全文
posted @ 2020-04-18 16:12 乔儿 阅读(2749) 评论(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 乔儿 阅读(484) 评论(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 乔儿 阅读(340) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 19 下一页