소스 검색

1.优化首页重启的问题

tags/0.0.8+2
“yanghuaxuan” 3 년 전
부모
커밋
2b322173f0
1개의 변경된 파일6개의 추가작업 그리고 3개의 파일을 삭제
  1. +6
    -3
      lib/util/net_util.dart

+ 6
- 3
lib/util/net_util.dart 파일 보기

@@ -170,9 +170,12 @@ class NetUtil {
///非法用户
if (result[GlobalConfig.HTTP_RESPONSE_KEY_CODE]?.toString() == '401000') {
try {
Future.delayed(Duration(seconds: 0)).then((onValue) {
BuildContext context = navigatorKey.currentState.overlay.context;
Provider.of<UserInfoNotifier>(context, listen: false).unLogin();
Future.delayed(Duration(seconds: 0)).then((onValue) async {
String token= await SharedPreferencesUtil.getStringValue(GlobalConfig.SHARED_KEY_TOKEN);
if(token!=null&&token.length>2){
BuildContext context = navigatorKey.currentState.overlay.context;
Provider.of<UserInfoNotifier>(context, listen: false).unLogin();
}
});
} catch (e, s) {
Logger.error(e, s);


불러오는 중...
취소
저장