logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

关于VUE 异步函数同步调用处理的问题

业务场景:需要多次请求http接口调用,且存在依赖关系譬如 axios.post() 调完接口返回的数据接着给下面的接口调用使用Promise解决问题letpromiseSource=this.getPersonPhoto(sourceRoutePoints.slice(0,2),sourcePvid,0)letpromiseTarget=this.getPersonPhoto(targetRou

k8s常用命令以及docker保存镜像文件

helm拉取镜像文件helm fetch helm镜像helm fetch vcs/spatio-temporal-lasa-adbdocker拉取镜像文件docker save -o 镜像名称.tar 镜像名称带路径docker save -o spatio-temporal-lasa:v3.tar registry.cn-hangzhou.aliyuncs.com/vcs-deploy/spa

mac环境下sourceTree每次拉取/提交代码重复输入密码问题

git config –global credential.helper osxkeychain如果不能执行,请先安装:$ git credential-osxkeychain# Test for the cred helpergit: 'credential-osxkeychain' is not a git command. See 'git --help'.$ curl -s -O \htt

#git
Java解压缩zip包+rar包兼容rar4和rar5兼容多操作系统

业务背景:需要将zip包或者rar包进行解压缩,需要兼容rar4和rar5两种版本maven 依赖包:<dependency><groupId>com.github.junrar</groupId><artifactId>junrar</artifactId><version>3.0.0</version><

#java#开发语言#android
用线程池去处理大量查询/插数据库操作

在工作过程中经常遇到需要处理非依赖性的http接口请求或者非依赖型的查库入库操作在这种情况下,为了提升性能,用多线程来处理性能更佳import java.util.*;import java.util.concurrent.*;public static void main(String[] args) {Map<String,String[]> parameterMap=要处理的多任

#java
到底了