代码:
onLoad () {
this.getSwiperList()
},
methods: {
// 3. 获取轮播图数据的方法
async getSwiperList() {
// 3.1 发起请求
const { data: res } = await uni.$http.get('/api/public/v1/home/swiperdata')
// 3.2 请求失败
if (res.meta.status !== 200) {
return uni.showToast({
title: '数据请求失败!',
duration: 1500,
icon: 'none',
})
}
// 3.3 请求成功,为 data 中的数据赋值
this.swiperList = res.message
},
},
报错:
Error in onLoad hook: "TypeError: _regenerator.default.mark is not a function"
1***@qq.com (作者)
不是,已经自己解决了,写错了基准地址参数,导致请求失败。这是es6的写法
2022-01-12 11:41