vue + axios +elementui 调用第三方接口

2019-04-18  本文已影响0人  中规中矩的蒸汽波boy

此方法适用于

服务器配置: Allow-Control-Allow-Origin: *

客户端配置:['Content-Type'] = 'application/x-www-form-urlencoded';

1:根目录/config/index.js


proxyTable: {

  '/api': {

      target: 'https://api.map.baidu.com',

      changeOrigin: true,

       pathRewrite: {
               '^/api': ''
        }
    }
}

2:引用 - (注意前缀(’/api/‘))


axios.get(`/api/geocoder/v2/callback=?`).then((response)=>{

      var res = response.data;

      console.log(res);

})

上一篇下一篇

猜你喜欢

热点阅读