年度归档: 2021年

3 篇文章

windows终端(cmd,Git Bash)添加代理
cmd #设置 set http_proxy=http://127.0.0.1:1080 set https_proxy=http://127.0.0.1:1080 #取消 set http_proxy= set https_proxy= #如果有账密 set https_proxy_user=用户名 set https_proxy_pass=密码…
CentOS安装Python3多版本共存
centos默认安装的是python2,如果安装了宝塔,其他脚本需要用到python3就得共存 #安装环境 yum install git gcc gcc-c++ make automake autoconf libtool pcre pcre-devel zlib zlib-devel openssl-devel wget vim -y yum …
vue的axios请求携带cookie
axios.defaults.withCredentials = true; //配置为true 默认值为false。 true:在跨域请求时,会携带用户凭证 false:在跨域请求时,不会携带用户凭证;返回的 response 里也会忽略 cookie