Flutter網絡請求庫DIO的基本使用
1. 導入dio包
目前dio庫的最新版本是3.0.1,同使用其他三方庫一樣,Flutter中使用dio庫同樣需要配置pubspec.yaml文件。
dependencies: flutter: sdk: flutter dio: ^3.0.10
2. 導入並創建實例
dio包引入成功之後就可以創建dio實例瞭,一個實例可以發起多個請求,APP中如果隻有一個數據源的情況下就可以考慮將dio實例創建成單例模式,這樣可以節省系統資源,減少不必要的開銷。
//htpp.dart import 'package:dio/dio.dart'; var dio = Dio();
3.基本配置
在開始使用實例之前需要對實例進行一些基本設置,由於每個人的項目需求不同,我這裡隻寫一下我自己小項目的幾個簡單配置:
//統一配置dio dio.options.baseUrl = "https://www.wanandroid.com";//baseUrl dio.options.connectTimeout = 5000;//超時時間 dio.options.receiveTimeout = 3000;//接收數據最長時間 dio.options.responseType = ResponseType.json;//數據格式
也可以通過創建option的方式配置:
BaseOptions options = BaseOptions(); options.baseUrl = "https://www.wanandroid.com"; options.connectTimeout = 5000; options.receiveTimeout = 3000; options.responseType = ResponseType.json; dio.options = options;
上面介紹瞭配置dio實例的兩種方式,並對其中的baseUrl、鏈接超時、接收數據最長時長、接收報文的數據類型等幾個簡單屬性做瞭統一配置。dio中還有一些其他的配置,可以參考dio的主頁github.com/flutterchin…
4.使用示例
dio實例配置完成之後如何使用呢?通過請求玩android首頁的banner圖來演示一下: 基本的步驟是,第一步先請求數據,第二步把請求回來的json數據轉成model,第三步把model數據渲染成輪播圖:
child: FutureBuilder( future: dio.get("/banner/json"), builder: (context, snapshot) { if (snapshot.connectionState == ConnectionState.done) { Response response = snapshot.data; Map bannerMap = json.decode(response.toString()); var banner = HomeBanner.fromJson(bannerMap); if (snapshot.hasError) { Fluttertoast.showToast(msg: snapshot.error.toString()); } else { return _getSwiper(banner.data); // Fluttertoast.showToast(msg: banner.data[0].title); } } return Center( child: CircularProgressIndicator(), ); }, ), //根據接口返回的數據生成輪播圖 Swiper _getSwiper(List<Datum> data) { imgs.clear(); for (var i = 0; i < data.length; i++) { var image = Image.network( data[i].imagePath, fit: BoxFit.cover, ); imgs.add(image); } return Swiper( itemWidth: double.infinity, itemHeight: 200, itemCount: imgs.length, itemBuilder: (BuildContext context, int index) { return imgs[index]; }, autoplay: true, pagination: new SwiperPagination( builder: SwiperPagination.dots, ), control: new SwiperControl(), ); }
這個示例中涉及到瞭JSON轉MODEL的相關知識
以上就是Flutter網絡請求庫DIO的基本使用的詳細內容,更多關於Flutter網絡請求庫DIO的使用的資料請關註WalkonNet其它相關文章!
推薦閱讀:
- None Found