Flutter使用Dio和封装带加载框的网络请求

2024-03-29 15:18

本文主要是介绍Flutter使用Dio和封装带加载框的网络请求,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

应用开发过程中肯定少不了网络操作,不管是请求数据还是下载资源等等,都需要使用到网络请求,这里就封装一个网络请求,并在请求中添加loading等待框,由开光控制是否显示,请求成功或者失败都关闭改弹窗。

添加配置

在使用第三方依赖的时候我们需要在根目录下的pubspec.yaml文件下dependencies中配置我们需要使用到的第三方库,同时可以到搜索第三方库最新版本资源进行搜索,比如搜索一个dio
在这里插入图片描述
就可以得到最新的版本信息,并查看最新详情
在这里插入图片描述
添加Dio依赖,这里一定要注意空白区域!!!!有强迫症的可别把空白区域删了,注意留出来。

  dio: ^4.0.0

在这里插入图片描述
添加flutter_easyloading依赖

  flutter_easyloading: ^3.0.0

封装网络访问模块

1.先通过一个util来控制loading加载框的显示和隐藏,创建一个loading_utils.dart文件:

import 'package:flutter_easyloading/flutter_easyloading.dart';bool loadingStatus = false;class LoadingUtils {static show({String showMsg}) {EasyLoading.show(status: showMsg);}static dismiss() {EasyLoading.dismiss();}
}

2.创建存放API地址的文件,api.dart:

import 'package:dio/dio.dart';import 'dio_mamager.dart';class Api{///根地址static const Base_Url = "https://www.wanandroid.com/";///获取首页banner列表static getBanner() async {return await DioManager().get('banner/json');}///获取首页文章列表  使用$符号拼接地址ARTICLE_LIST  以及  页码 pagestatic getArticleList({page = 0}) async {return DioManager().get('article/list/$page/json');}///项目标题static getProjectTree()async{return DioManager().get('project/tree/json');}///项目列表static getProjectList({page = 0, cid = 294}) async{return DioManager().get('project/list/$page/json?cid=$cid');}///体系数据static getTreeList() async{return await DioManager().get('tree/json');}///登录static toLogin({username,password}) async{FormData formData = FormData.fromMap({'username':username,'password':password});return await DioManager().post('user/login',data: formData);}///退出登录static toLoginOut() async{return await DioManager().get('user/logout/json');}///收藏站内文章  参数文章idstatic Future addCollection({articleId = 0}) async{return await DioManager().post('lg/collect/$articleId/json');}///取消收藏static Future cancelCollection({articleId = 0}) async{return await DioManager().post('lg/uncollect_originId/$articleId/json');}
}

3.创建网络管理,配置相关信息,并实现get 和 post请求:

先创建一个单例模式:

 Dio _dio;static DioManager _instance;static DioManager getInstance(){if(null == _instance){_instance = new DioManager();}return _instance;}

在构造方法中配置相关信息:

  DioManager(){_baseOptions = new BaseOptions(baseUrl: Api.Base_Url,connectTimeout: 5000,receiveTimeout: 5000,);_dio = new Dio(_baseOptions)..interceptors.add(CookieManager(cookieJar));//添加cookieJar  拦截器也可以在这里添加}

实现get请求:

  get(url, {data, options,withLoading = true}) async {if(withLoading){LoadingUtils.show(showMsg: "加载中...");}print('getRequest:==>path:${url}   params:${data}');Response response;try {response = await _dio.get(url, queryParameters: data, options: options);print('getResponse==>:${response.data}');if(withLoading){LoadingUtils.dismiss();}} on DioError catch (e) {print('getError:==>errorType:${e.type}   errorMsg:${e.message}');if(withLoading){LoadingUtils.dismiss();}}///response.data  请求成功是一个map最终需要将map进行转换 , 请求失败直接返回null///map:转换 ,将List中的每一个条目执行 map方法参数接收的这个方法,这个方法返回T类型,///map方法最终会返回一个  Iterable<T>return response.data;}

实现post请求:

post(url, {Map<String, dynamic> parameters,dynamic data,Options options,withLoading = true}) async {if(withLoading){LoadingUtils.show(showMsg: "加载中...");}print('postRequest:==>path:${url}   params:${data}');Response response;try {response = await _dio.post(url, queryParameters: parameters,data: data, options: options);print('postResponse==>:${response.data}');if(withLoading){LoadingUtils.dismiss();}}on DioError catch(e){print('postError:==>errorType:${e.type}   errorMsg:${e.message}');if(withLoading){LoadingUtils.dismiss();}}///response.data  请求成功是一个map最终需要将map进行转换 , 请求失败直接返回null///map:转换 ,将List中的每一个条目执行 map方法参数接收的这个方法,这个方法返回T类型,///map方法最终会返回一个  Iterable<T>return response.data;}

完整代码:


import 'package:cookie_jar/cookie_jar.dart';
import 'package:dio/dio.dart';
import 'package:dio_cookie_manager/dio_cookie_manager.dart';
import 'package:flutter_app_wandroid/ui/dialog/loading_utils.dart';import 'api.dart';class DioManager{static var cookieJar = CookieJar();Dio _dio;static DioManager _instance;BaseOptions _baseOptions;static DioManager getInstance(){if(null == _instance){_instance = new DioManager();}return _instance;}DioManager(){_baseOptions = new BaseOptions(baseUrl: Api.Base_Url,connectTimeout: 5000,receiveTimeout: 5000,);_dio = new Dio(_baseOptions)..interceptors.add(CookieManager(cookieJar));//添加cookieJar  拦截器也可以在这里添加}/*** get请求*/get(url, {data, options,withLoading = true}) async {if(withLoading){LoadingUtils.show(showMsg: "加载中...");}print('getRequest:==>path:${url}   params:${data}');Response response;try {response = await _dio.get(url, queryParameters: data, options: options);print('getResponse==>:${response.data}');if(withLoading){LoadingUtils.dismiss();}} on DioError catch (e) {print('getError:==>errorType:${e.type}   errorMsg:${e.message}');if(withLoading){LoadingUtils.dismiss();}}///response.data  请求成功是一个map最终需要将map进行转换 , 请求失败直接返回null///map:转换 ,将List中的每一个条目执行 map方法参数接收的这个方法,这个方法返回T类型,///map方法最终会返回一个  Iterable<T>return response.data;}/*** Post请求*/post(url, {Map<String, dynamic> parameters,dynamic data,Options options,withLoading = true}) async {if(withLoading){LoadingUtils.show(showMsg: "加载中...");}print('postRequest:==>path:${url}   params:${data}');Response response;try {response = await _dio.post(url, queryParameters: parameters,data: data, options: options);print('postResponse==>:${response.data}');if(withLoading){LoadingUtils.dismiss();}}on DioError catch(e){print('postError:==>errorType:${e.type}   errorMsg:${e.message}');if(withLoading){LoadingUtils.dismiss();}}///response.data  请求成功是一个map最终需要将map进行转换 , 请求失败直接返回null///map:转换 ,将List中的每一个条目执行 map方法参数接收的这个方法,这个方法返回T类型,///map方法最终会返回一个  Iterable<T>return response.data;}
}

调用

在api.dart文件中调用DioManager进行网络访问,比如访问玩安卓首页文章列表,这是一个异步请求:

  static getArticleList({page = 0}) async {return DioManager().get('article/list/$page/json');}

然后在要获取文章列表的位置进行调用:

Api.getArticleList(page: page).then((value) {if (value['data'] == null) throw Exception('${value['errorMsg']}');if (value != null && value['errorCode'] == 0) {//成功解析数据}}).catchError((e) {//失败});

在控制台就可以看到获取到的数据,上部分是banner,下部分是文章列表:
在这里插入图片描述
使用Dio进行一个简单的网络封装就实现了,可以根据自己的需求进行扩展。

这篇关于Flutter使用Dio和封装带加载框的网络请求的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/858931

相关文章

golang1.23版本之前 Timer Reset方法无法正确使用

《golang1.23版本之前TimerReset方法无法正确使用》在Go1.23之前,使用`time.Reset`函数时需要先调用`Stop`并明确从timer的channel中抽取出东西,以避... 目录golang1.23 之前 Reset ​到底有什么问题golang1.23 之前到底应该如何正确的

详解Vue如何使用xlsx库导出Excel文件

《详解Vue如何使用xlsx库导出Excel文件》第三方库xlsx提供了强大的功能来处理Excel文件,它可以简化导出Excel文件这个过程,本文将为大家详细介绍一下它的具体使用,需要的小伙伴可以了解... 目录1. 安装依赖2. 创建vue组件3. 解释代码在Vue.js项目中导出Excel文件,使用第三

Linux alias的三种使用场景方式

《Linuxalias的三种使用场景方式》文章介绍了Linux中`alias`命令的三种使用场景:临时别名、用户级别别名和系统级别别名,临时别名仅在当前终端有效,用户级别别名在当前用户下所有终端有效... 目录linux alias三种使用场景一次性适用于当前用户全局生效,所有用户都可调用删除总结Linux

java图像识别工具类(ImageRecognitionUtils)使用实例详解

《java图像识别工具类(ImageRecognitionUtils)使用实例详解》:本文主要介绍如何在Java中使用OpenCV进行图像识别,包括图像加载、预处理、分类、人脸检测和特征提取等步骤... 目录前言1. 图像识别的背景与作用2. 设计目标3. 项目依赖4. 设计与实现 ImageRecogni

python管理工具之conda安装部署及使用详解

《python管理工具之conda安装部署及使用详解》这篇文章详细介绍了如何安装和使用conda来管理Python环境,它涵盖了从安装部署、镜像源配置到具体的conda使用方法,包括创建、激活、安装包... 目录pytpshheraerUhon管理工具:conda部署+使用一、安装部署1、 下载2、 安装3

Mysql虚拟列的使用场景

《Mysql虚拟列的使用场景》MySQL虚拟列是一种在查询时动态生成的特殊列,它不占用存储空间,可以提高查询效率和数据处理便利性,本文给大家介绍Mysql虚拟列的相关知识,感兴趣的朋友一起看看吧... 目录1. 介绍mysql虚拟列1.1 定义和作用1.2 虚拟列与普通列的区别2. MySQL虚拟列的类型2

使用MongoDB进行数据存储的操作流程

《使用MongoDB进行数据存储的操作流程》在现代应用开发中,数据存储是一个至关重要的部分,随着数据量的增大和复杂性的增加,传统的关系型数据库有时难以应对高并发和大数据量的处理需求,MongoDB作为... 目录什么是MongoDB?MongoDB的优势使用MongoDB进行数据存储1. 安装MongoDB

关于@MapperScan和@ComponentScan的使用问题

《关于@MapperScan和@ComponentScan的使用问题》文章介绍了在使用`@MapperScan`和`@ComponentScan`时可能会遇到的包扫描冲突问题,并提供了解决方法,同时,... 目录@MapperScan和@ComponentScan的使用问题报错如下原因解决办法课外拓展总结@

mysql数据库分区的使用

《mysql数据库分区的使用》MySQL分区技术通过将大表分割成多个较小片段,提高查询性能、管理效率和数据存储效率,本文就来介绍一下mysql数据库分区的使用,感兴趣的可以了解一下... 目录【一】分区的基本概念【1】物理存储与逻辑分割【2】查询性能提升【3】数据管理与维护【4】扩展性与并行处理【二】分区的

使用Python实现在Word中添加或删除超链接

《使用Python实现在Word中添加或删除超链接》在Word文档中,超链接是一种将文本或图像连接到其他文档、网页或同一文档中不同部分的功能,本文将为大家介绍一下Python如何实现在Word中添加或... 在Word文档中,超链接是一种将文本或图像连接到其他文档、网页或同一文档中不同部分的功能。通过添加超