开发日常小问题
xiaohuihui_z
这个作者很懒,什么都没留下…
展开
-
vue axios封装 以及302问题
vue axios封装 (需求是只在登录页面设置请求content-type的类型)//在 request 拦截器实现axios.interceptors.request.use(config => {config.baseURL = remoteUrl;console.log(“config”,config); //config的格式如下边的if (config.url.i...原创 2019-12-05 15:18:01 · 5217 阅读 · 0 评论 -
上传下载文件
//下载requestDownloadExcel(param).then(response=>{let blob = new Blob([response]); // 这个content是下载的文件内容if (‘download’ in document.createElement(‘a’)) {let aTag = document.createElement(‘a’); ...原创 2019-12-02 16:49:46 · 121 阅读 · 0 评论 -
后端返回的图片验证码刷新问题
后端直接返回一个地址路径 通过使用随机数可以实现刷新效果this.verifyImage = ‘http://www…xx/VerifyImage?’+Math.random() ;原创 2019-12-02 15:29:20 · 602 阅读 · 0 评论