uniapp项目中配置网络请求

文章介绍了如何在uni-app中安装并配置@escook/request-miniprogram库进行http请求,包括设置请求根路径、请求前后处理函数。同时,展示了在模板中使用数据获取轮播图信息并展示的方法,当请求失败时会显示错误提示。
摘要由CSDN通过智能技术生成
//终端中安装
npm install @escook/request-miniprogram
在main.js中配置如下
import { $http } from '@escook/request-miniprogram'

uni.$http = $http
// 配置请求根路径
$http.baseUrl = 'https://www.uinav.com'

// 请求开始之前做一些事情
$http.beforeRequest = function (options) {
  uni.showLoading({
    title: '数据加载中...',
  })
}
// 封装的展示消息提示的方法
uni.$showMsg = function (title = '数据加载失败!', duration = 1500) {
  uni.showToast({
    title,
    duration,
    icon: 'none',
  })
}
// 请求完成之后做一些事情
$http.afterRequest = function () {
  uni.hideLoading()
}

配置完成后使用

<template>
  <view>
    <!-- 轮播图区域 -->
    <swiper :indicator-dots="true" :autoplay="true" :interval="3000" :duration="1000" :circular="true">
      <!-- 循环渲染轮播图的 item 项 -->
     <swiper-item v-for="(item, i) in swiperList" :key="i">
         <navigator class="swiper-item" :url="'/subpkg/goods_detail/goods_detail?goods_id=' + item.goods_id">
           <!-- 动态绑定图片的 src 属性 -->
           <image :src="item.image_src"></image>
         </navigator>
     </swiper-item>
    </swiper>
  </view>
</template>
 export default {
   data() {
     return {
       // 1. 轮播图的数据列表,默认为空数组
       swiperList: [],
     }
   },
   onLoad() {
     // 2. 在小程序页面刚加载的时候,调用获取轮播图数据的方法
     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.$showMsg()
       // 3.3 请求成功,为 data 中的数据赋值
       this.swiperList = res.message
     },
   },
 }
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

码上流星&洒下星辰

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值