码迷,mamicode.com
首页 > 其他好文 > 详细

随便弄个模板好找

时间:2019-03-03 09:42:17      阅读:204      评论:0      收藏:0      [点我收藏+]

标签:header   模板   pen   enter   api   ade   end   cat   erro   

    this.axios.get('/api/v1/***', {
      headers: {
        'Authorization': 'Bearer '+localStorage.getItem('token')
      }
    })
      .then((res) => {
        console.log(res);
      })
      .catch((error) => {
        console.log(error);
      });
      let data = new FormData();
      data.append('enterprise', this.writeFeel.company);

      this.axios({
        method: 'post',
        url: '/api/v1/***',
        headers: {
          'Content-type': 'multipart/form-data',
          'Authorization': 'Bearer '+localStorage.getItem('token')
        },
        data: data
      })
        .then((res) => {
          console.log(res);
        })
        .catch((error) => {
          console.log(error);
        });

随便弄个模板好找

标签:header   模板   pen   enter   api   ade   end   cat   erro   

原文地址:https://www.cnblogs.com/wulzt/p/10463725.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!