zoukankan      html  css  js  c++  java
  • axios之post提交

    axios官网地址:https://github.com/axios/axios

    post提交到后台需要做相对应的处理

    使用URLSearchParams可以让post 数据提交到后台

    对应gitHub上的内容如下:

           In a browser, you can use the URLSearchParams API as follows:
    
           const params = new URLSearchParams();
            params.append('param1', 'value1');
           params.append('param2', 'value2');
          axios.post('/foo', params);
    
    
         post提交之头像上传:
    
          首先先阅读gitHub上axios关于头像上传的介绍
    
          查看文件examples里面的upload  里面相对应有处理介绍
    
            首先这有一个demo是简单的图片上传
    
             <img :src="headImg" alt="">
        <input type="file" id = "head" @change="uploadImg()">
    
          // 图片上传
     uploadImg(){
      //  console.log(document.getElementById('head').files[0])  点取消输出undefined
    
      if(document.getElementById('head').files[0]){
             var data = new FormData();
              data.append('headfile', document.getElementById('head').files[0]);
              axios.post("输入上传接口地址",data).then(rest=>{
              console.log(rest);
              if(rest.data.code===200){
                this.headImg = rest.data.data.msbox;
              }
       })
      }
       
     }
  • 相关阅读:
    头文件<stdarg.h>
    头文件<signal.h>
    头文件<setjmp.h>
    头文件<math.h>
    头文件<locale.h>
    头文件<limits.h>
    头文件<ctype.h>
    头文件<assert.h>
    PHP error_reporting
    八大排序算法
  • 原文地址:https://www.cnblogs.com/sunny-yu/p/11604748.html
Copyright © 2011-2022 走看看