axios发送get和post请求

2018-01-28  本文已影响0人  潼潼爱coding

1.get:

axios.get(url, { params: param })
                //成功返回
                .then(response => {
                    console.log(response);
                })
                //失败返回
                .catch(error => {
                    console.log(error);
                })

2.post

首先需要通过设置全局的默认配置,把axios的发送方式改一下:
axios.defaults.headers['Content-Type'] = 'application/x-www-form-urlencoded;charset=UTF-8'
使用qs库来格式化数据
npm install qs --save


 axios.post(url, qs.stringify(param))
                //成功返回
                .then(response => {
                    console.log(response);
                })
                //失败返回
                .catch(error => {
                    console.log(error);
                })
上一篇 下一篇

猜你喜欢

热点阅读