扫一扫分享
dio是一个强大的Dart Http请求库,支持Restful api、FormData、拦截器、请求取消、Cookie管理、文件上传/下载、超时、自定义适配器等...
dependencies:
dio: ^2.1.x // 请使用pub上2.1分支的最新版本
如果您是1.0的用户,可以参照此文档升级到2.x。
import 'package:dio/dio.dart';
void getHttp() async {
try {
Response response = await Dio().get("http://www.baidu.com");
print(response);
} catch (e) {
print(e);
}
}
手机预览