logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

vue3.0下如何挂载全局方法

vue3.0取消了Vue.prototype,官方文档推荐使用globalProperties具体用例如下static.js:import router from "@/router";function getStatic(url) {return 'http://localhost:81/' + url}function linkTo (url, data) {router.push({path

#javascript#node.js#前端
文件上传到Centos云服务器,使用vsftpd开源ftp工具

文件上传到Centos云服务器,使用vsftpd开源ftp工具1.安装vsftpdyum install vsftpd -y2.启动服务systemctl start vsftpd3.验证服务是否启动netstat -tunlp报错:command not found由于网络工具没有安装,执行安装网络工具yum install net-tools4.打开vsftpd配...

idea使用plantUML绘制以及根据代码生成类图

对已有代码生成类图(比较方便但是感觉有时候还不够智能)使用plantUML(推荐)插件搜索uml就能找到然后安装graphviz传送门重启idea创建类图语法可以看plantUML的GitHub 传送门找到你想画的图,点击看到语法,熟练了比用Visio快很多...

axios发送请求未经过拦截器的疑问

axios在create或者mounted生命周期内使用post请求未经过拦截器拦截器axios.interceptors.request.use(config => {if (localStorage.ticket) {// 判断是否存在token,如果存在的话,则每个http header都加上tokenconsole.log('have');config.headers.ticket

到底了