Implementation of secondary packaging of flutter Dio
•
Android
catalog:
EntityFactory:
class EntityFactory {
static T generateOBJ<T>(json) {
if (json == null) {
return null;
}
//可以在这里加入任何需要并且可以转换的类型,例如下面
// else if (T.toString() == "LoginEntity") {
// return LoginEntity.fromJson(json) as T;
// }
else {
return json as T;
}
}
}
BaseEntity:
class BaseEntity<T> {
int code;
String message;
T data;
BaseEntity({this.code,this.message,this.data});
factory BaseEntity.fromJson(json) {
return BaseEntity(
code: json["code"],message: json["msg"],// data值需要经过工厂转换为我们传进来的类型
data: EntityFactory.generateOBJ<T>(json["data"]),);
}
}
BaseListEntity:
class BaseListEntity<T> {
int code;
String message;
List<T> data;
BaseListEntity({this.code,this.data});
factory BaseListEntity.fromJson(json) {
List<T> mData = List();
if (json['data'] != null) {
//遍历data并转换为我们传进来的类型
(json['data'] as List).forEach((v) {
mData.add(EntityFactory.generateOBJ<T>(v));
});
}
return BaseListEntity(
code: json["code"],data: mData,);
} }
ErrorEntity:
class ErrorEntity {
int code;
String message;
ErrorEntity({this.code,this.message});
}
NWApi:
class NWApi {
static final baseApi = "https://easy-mock.bookset.io/mock/5dfae67d4946c20a50841fa7/example/";
static final loginPath = "user/login";//接口返回:{"code": int,"message": "String","data": {"account": "String","password": "String"}}
static final queryListPath = "/query/list";//接口返回:{"code": ing,"data": [int,int,String,int]}
static final queryListJsonPath = "/query/listjson";//接口返回:{"code": int,"data": [{"account": "String","password": "String"}, {"account": "String","password": "String"}]}
}
NWMethod:
enum NWMethod {
GET,POST,DELETE,PUT
}
//使用:NWMethodValues[NWMethod.POST]
const NWMethodValues = {
NWMethod.GET: "get",NWMethod.POST: "post",NWMethod.DELETE: "delete",NWMethod.PUT: "put"
};
Now you can perform formal encapsulation:
The first step is to create a single instance auxiliary class of DIO, initialize DIO and set some global parameters for DIO:
import 'package:dio/dio.dart'; import 'package:Flutter_app/network/NWApi.dart'; import 'package:Flutter_app/utils/PrintUtil.dart'; class dioManager { static final dioManager _shared = dioManager._internal(); factory dioManager() => _shared; dio dio; dioManager._internal() { if (dio == null) { BaSEOptions options = BaSEOptions( baseUrl: NWApi.baseApi,contentType: Headers.jsonContentType,responseType: ResponseType.json,receiveDataWhenStatusError: false,connectTimeout: 30000,receiveTimeout: 3000,); dio = dio(options); } } }
The second step is to encapsulate the request. In my opinion, {"code": 0, "data": {}} and {"code": 0, "data": []} should separate the two request methods:
// 请求,返回参数为 T // method:请求方法,NWMethod.POST等 // path:请求地址 // params:请求参数 // success:请求成功回调 // error:请求失败回调 Future request<T>(NWMethod method,String path,{Map params,Function(T) success,Function(ErrorEntity) error}) async { try { Response response = await dio.request(path,queryParameters: params,options: Options(method: NWMethodValues[method])); if (response != null) { BaseEntity entity = BaseEntity<T>.fromJson(response.data); if (entity.code == 0) { success(entity.data); } else { error(ErrorEntity(code: entity.code,message: entity.message)); } } else { error(ErrorEntity(code: -1,message: "未知错误")); } } on dioError catch(e) { error(createErrorEntity(e)); } } // 请求,返回参数为 List // method:请求方法,NWMethod.POST等 // path:请求地址 // params:请求参数 // success:请求成功回调 // error:请求失败回调 Future requestList<T>(NWMethod method,Function(List) success,options: Options(method: NWMethodValues[method])); if (response != null) { BaseListEntity entity = BaseListEntity<T>.fromJson(response.data); if (entity.code == 0) { success(entity.data); } else { error(ErrorEntity(code: entity.code,message: entity.message)); } } else { error(ErrorEntity(code: -1,message: "未知错误")); } } on dioError catch(e) { error(createErrorEntity(e)); } }
Extract request error handling method createerrorentity:
// 错误信息 ErrorEntity createErrorEntity(dioError error) { switch (error.type) { case dioErrorType.CANCEL:{ return ErrorEntity(code: -1,message: "请求取消"); } break; case dioErrorType.CONNECT_TIMEOUT:{ return ErrorEntity(code: -1,message: "连接超时"); } break; case dioErrorType.SEND_TIMEOUT:{ return ErrorEntity(code: -1,message: "请求超时"); } break; case dioErrorType.RECEIVE_TIMEOUT:{ return ErrorEntity(code: -1,message: "响应超时"); } break; case dioErrorType.RESPONSE:{ try { int errCode = error.response.statusCode; String errMsg = error.response.statusMessage; return ErrorEntity(code: errCode,message: errMsg); // switch (errCode) { // case 400: { // return ErrorEntity(code: errCode,message: "请求语法错误"); // } // break; // case 403: { // return ErrorEntity(code: errCode,message: "服务器拒绝执行"); // } // break; // case 404: { // return ErrorEntity(code: errCode,message: "无法连接服务器"); // } // break; // case 405: { // return ErrorEntity(code: errCode,message: "请求方法被禁止"); // } // break; // case 500: { // return ErrorEntity(code: errCode,message: "服务器内部错误"); // } // break; // case 502: { // return ErrorEntity(code: errCode,message: "无效的请求"); // } // break; // case 503: { // return ErrorEntity(code: errCode,message: "服务器挂了"); // } // break; // case 505: { // return ErrorEntity(code: errCode,message: "不支持HTTP协议请求"); // } // break; // default: { // return ErrorEntity(code: errCode,message: "未知错误"); // } // } } on Exception catch(_) { return ErrorEntity(code: -1,message: "未知错误"); } } break; default: { return ErrorEntity(code: -1,message: error.message); } } }
Complete diomanager class code:
import 'package:dio/dio.dart'; import 'package:Flutter_app/network/entity/BaseEntity.dart'; import 'package:Flutter_app/network/entity/BaseListEntity.dart'; import 'package:Flutter_app/network/entity/EntityFactory.dart'; import 'package:Flutter_app/network/entity/ErrorEntity.dart'; import 'package:Flutter_app/network/NWApi.dart'; import 'package:Flutter_app/network/NWMethod.dart'; class dioManager { static final dioManager _shared = dioManager._internal(); factory dioManager() => _shared; dio dio; dioManager._internal() { if (dio == null) { BaSEOptions options = BaSEOptions( baseUrl: NWApi.baseApi,); dio = dio(options); } } // 请求,返回参数为 T // method:请求方法,NWMethod.POST等 // path:请求地址 // params:请求参数 // success:请求成功回调 // error:请求失败回调 Future request<T>(NWMethod method,Function(List<T>) success,message: "未知错误")); } } on dioError catch(e) { error(createErrorEntity(e)); } } // 错误信息 ErrorEntity createErrorEntity(dioError error) { switch (error.type) { case dioErrorType.CANCEL:{ return ErrorEntity(code: -1,message: "响应超时"); } break; case dioErrorType.RESPONSE:{ try { int errCode = error.response.statusCode; String errMsg = error.response.statusMessage; return ErrorEntity(code: "$errCode",message: error.message); } } } }
use:
// 返回 LoginEntity dioManager().request<LoginEntity>( NWMethod.POST,NWApi.loginPath,params: {"account": "421789838@qq.com","password": "123456"},success: (data) { print("success data = $data"}); },error: (error) { print("error code = ${error.code},massage = ${error.message}"); } ); // 返回 List dioManager().requestList<LoginEntity>( NWMethod.POST,NWApi.queryListJsonPath,massage = ${error.message}"); } );
The above is the whole content of this article. I hope it will help you in your study, and I hope you will support us a lot.
The content of this article comes from the network collection of netizens. It is used as a learning reference. The copyright belongs to the original author.
THE END
二维码
