- 博客(8)
- 收藏
- 关注
转载 windows解决端口占用问题
1.查询端口占用情况:netstat -aon|findstr "3306"2.杀死占用端口的进程号(注:是进程号不是端口号)taskkill /pid 11366 -t -f
2021-01-06 21:00:35 163 1
转载 angular传图片文件到后台
HTML:<div> <label for="file">选择文件</label> <input type="file" id="file" (change)="postFile($event.target.files)"></div>ts: public postFile(files: FileList){ this.fileToUpload = files[0]; // console.log(thi
2020-12-10 21:07:31 453
转载 django 后台获取put delete请求的数据
from django.http import QueryDictdef PutRequest(request) put = QueryDict(request.body) content = put.get('content', '') ......这样就可以获取请求中的数据了需要注意的是请求的方式:Content-Type: application/x-www-form-urlencoded;charset=utf-8 ...
2020-12-04 10:16:33 1796
转载 angular 解决跨域问题
建立本地代理proxy.config.json文件(直接在项目下新建)proxy.config.json的文件内容{"/api":{"target":"http://localhost:8000","secure":"false"}}angular.json配置文件加载配置代理文件proxyconfig.json"serve":{"builder":"@angular-devk...
2020-11-30 23:18:35 240
转载 python生成随机字符串
import randomimport string #第一种方法 seed = "1234567890abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ!@#$%^&*()_+=-"sa = []for i in range(8): sa.append(random.choice(seed))salt = ''...
2019-02-12 10:38:42 1287
转载 linux tar命令
tar语法#压缩tar -czvf ***.tar.gztar -cjvf ***.tar.bz2#解压缩tar -xzvf ***.tar.gztar -xjvf ***.tar.bz2 tar [主选项+辅选项] 文件或目录主选项是必须要有的,它告诉tar要做什么事情。辅选项是辅助使用的,可以选用。tar常用命令:主选项:-x 从档案文件中释放文件。...
2019-01-30 11:28:23 313
转载 tmux终端利器
前段时间在开发中,用的是tail,保证进程运行在电脑关机的情况下,但是还是不太方便,需要看nohup.out文件查看进程情况,本人觉得还是有些麻烦,咨询了部门的一个老运维,他给我推荐了tmux,堪称神器,分享给大家。mac安装:# 先安装Homebrew,有则跳过 ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebre...
2018-11-26 19:54:07 114
转载 centos命令提示符显示完整目录
配置方法:1.编辑profile文件,添加环境变量PS1 su root //切换到root用户 vim /etc/profile //打开profile文件在profile内容最下面添加如下内容:export PS1='[\u@\h `pwd`]\$' 2.保存退出,使profile修改生效source /etc/profile 3.查看命令提示符效果...
2018-10-18 17:36:51 1208
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人