krequestFuture<T> function
请求数据,,返回data数据为原始数据类型
void loading() async {
var data = await requestFuture<String>(
() => ApiRepository.get.nearbyMaxsShop(1, 0, 0));
}
Implementation
Future<T?> krequestFuture<T>(Future<Response> Function() request,
{Function(String?, String?, Exception)? onFail}) async {
try {
var response = await request();
if (response.statusCode == HttpStatus.ok) {
var json = response.data;
var result = ResultDto<T>.fromJsonT(json);
if (result.isSuccess()) {
return result.data;
} else {
throw BizException(code: result.errorCode, message: result.message);
}
} else {
KHttpPlatform.get.throwHandler
?.handleStatusCode(response.statusCode, onFail: onFail);
}
} on Exception catch (ex) {
KHttpPlatform.get.throwHandler?.handleError(ex, onFail: onFail);
}
return null;
}