onLoadDataError method
加载数据出错
Implementation
void onLoadDataError(ResponseData response) {
if (pageNo == 1) {
onError(responseData: response);
} else {
onLoadMoreError(response);
}
}
加载数据出错
void onLoadDataError(ResponseData response) {
if (pageNo == 1) {
onError(responseData: response);
} else {
onLoadMoreError(response);
}
}