根据官网填写即可!!!注意你的路径跟官网的不一样需要改动
网址:https://www.uviewui.com/js/http.html
此处示范的是get请求
module.exports = (vm) => {
// 初始化请求配置
uni.$u.http.setConfig((config) => {
/* config 为默认全局配置*/
config.baseURL = 'https://api-hmugo-web.itheima.net/api/public/v1'; /* 填写这里!根域名 */
return config
})
}
const http = uni.$u.http
// 获取轮播图 (get请求)
export const getBanner = (data) => http.get('/home/swiperdata', data)
// 引入请求封装,将app参数传递到配置中
require('./config/request')(app)
//引用
import { getBanner } from '../../config/api';
//生命周期使用
async onLoad() {
await getBanner().then(res=>{
console.log(res);
})
},