async getSwiper() { let resData = `{"picturetype":12}`; // let { resdatapost, md5 } = this.$postring.postsend(resData); await listSlideShow({ data: resdatapost, signed: md5 }) .then((res) => { let { slideShows } = this.$postring.postjson(res.data); this.swiperImgList = slideShows; }) .catch((err) => { uni.showToast({ title: err, duration: 2000, }); }); }
时间: 2024-02-14 13:33:17 浏览: 127
Vue 报错TypeError: this.$set is not a function 的解决方法
5星 · 资源好评率100%
您的第二个问题是关于一个名为getSwiper的异步函数的代码。这个函数的作用是获取轮播图列表。在函数中,首先定义了一个名为resData的字符串,内容为`{"picturetype":12}`。然后使用this.$postring.postsend方法将resData转换为resdatapost和md5两个变量。接着调用listSlideShow方法,并传递一些参数。使用.then方法处理返回的结果,从结果的data属性中解构出slideShows并赋值给this.swiperImgList。如果出现错误,会通过.catch方法捕获,并显示一个toast提示错误信息。
阅读全文