Parcourir la source

规范Apex Mobile部分网络请求出错后的提示
Apex Mobile detail 网络请求失败后,增加提示消息。
底层网络接口增加网络不可用时的默认错误消息。
修复网络不可用时,文档下载失败,提示为空的bug。

Ray Zhang il y a 6 ans
Parent
commit
82e35b5bba
1 fichiers modifiés avec 2 ajouts et 2 suppressions
  1. 2 2
      common/NetworkUtils.m

+ 2 - 2
common/NetworkUtils.m

@@ -936,7 +936,7 @@ repeat:
         {
             dispatch_async(dispatch_get_main_queue(), ^{
                 if(result)
-                    result([[RAConvertor string2dict:[NSString stringWithFormat:@"{\"result\":%d}",RESULT_NET_NOTAVAILABLE]] mutableCopy]);
+                    result([[RAConvertor string2dict:[NSString stringWithFormat:@"{\"result\":%d,\"err_msg\":\"%@\"}",RESULT_NET_NOTAVAILABLE,NSLocalizedString(@"net_not_available", nil)]] mutableCopy]);
             });
     //        return detailContent;
             return ;
@@ -1698,7 +1698,7 @@ repeat:
         {
             dispatch_async(dispatch_get_main_queue(), ^{
                 if(result)
-                    result([[RAConvertor string2dict:[NSString stringWithFormat:@"{\"result\":%d}",RESULT_NET_NOTAVAILABLE]] mutableCopy]);
+                    result([[RAConvertor string2dict:[NSString stringWithFormat:@"{\"result\":%d,\"err_msg\":\"%@\"}",RESULT_NET_NOTAVAILABLE,NSLocalizedString(@"net_not_available", nil)]] mutableCopy]);
             });
     //        return detailContent;
             return ;