method:请求方法 url:请求接口 data:请求体 (或paramt请求头将参数拼接到url中) then:请求成功接收数据 catch:返回请求失败 一、查询请求
Axios 是一个基于 promise 的 HTTP 库,简单的讲就是可以发送get、post请求
axios({ method: "get", url: 'https://api.muxiaoguo.cn/api/yiyan', }).then((res) => { console.log(res.data) }).catch((res) => { console.log(err) })
二、传参请求
axios({ method: "post", url: 'https://api.muxiaoguo.cn/api/tianqi', //paramt请求头将参数拼接到url中, data是封装成一个请求体 paramt: { type: 1, city: "柳州" } }).then((res) => { console.log(res.data) }).catch((res) => { console.log(err) })