Steven 1 year ago
parent
commit
da73dacafa

+ 5 - 6
KulexiuForTeacher/KulexiuForTeacher/AppDelegate.m

@@ -21,9 +21,8 @@
 #import <UserNotifications/UserNotifications.h>
 #endif
 
-#import "UrlDecode.h"
+
 #import "KSTouchCapturingWindow.h"
-#import "KSBaseWKWebViewController.h"
 #import "UserInfoManager.h"
 
 #import "KSBaseWKWebViewController.h"
@@ -594,7 +593,7 @@ didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)deviceToken {
                 NSString *webUrl = [dict ks_stringValueForKey:@"url"];
                 if (![NSString isEmptyString:webUrl]) {
                     KSBaseWKWebViewController *webCtrl = [[KSBaseWKWebViewController alloc] init];
-                    webCtrl.url = webUrl;
+                    webCtrl.url = [webUrl getUrlEndcodeString];
                     CustomNavViewController *navCtrl = self.tabBarController.selectedViewController;
                     [navCtrl pushViewController:webCtrl animated:YES];
                 }
@@ -716,7 +715,7 @@ didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)deviceToken {
     if ([detailUrl containsString:@"linkUrl="]) {
         NSString *linkUrl = [[detailUrl componentsSeparatedByString:@"linkUrl="] lastObject];
         if (![NSString isEmptyString:linkUrl]) {
-            linkUrl = [UrlDecode decodeStringWithString:linkUrl];
+            linkUrl = [linkUrl removeUrlEndcodeString];
             // 转成 dic
             NSData *jsonData = [linkUrl mj_JSONData];
             NSError *error;
@@ -754,7 +753,7 @@ didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)deviceToken {
                     NSString *webUrl = [dict ks_stringValueForKey:@"url"];
                     if (![NSString isEmptyString:webUrl]) {
                         KSBaseWKWebViewController *webCtrl = [[KSBaseWKWebViewController alloc] init];
-                        webCtrl.url = webUrl;
+                        webCtrl.url = [webUrl getUrlEndcodeString];
                         
                         UIViewController *vc = self.window.rootViewController;
                         if ([vc isKindOfClass:[KSTabBarViewController class]]) {
@@ -911,7 +910,7 @@ didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)deviceToken {
             NSString *webUrl = [dict ks_stringValueForKey:@"url"];
             if (![NSString isEmptyString:webUrl]) {
                 KSBaseWKWebViewController *webCtrl = [[KSBaseWKWebViewController alloc] init];
-                webCtrl.url = webUrl;
+                webCtrl.url = [webUrl getUrlEndcodeString];
                 CustomNavViewController *navCtrl = self.tabBarController.selectedViewController;
                 [navCtrl pushViewController:webCtrl animated:YES];
             }

+ 2 - 0
KulexiuForTeacher/KulexiuForTeacher/Common/Tools/Extension/NSString+Extension.h

@@ -32,6 +32,8 @@ typedef NS_ENUM(NSInteger,CHECKTYPE){
 - (NSString *)dateFormatString; // 返回年月日 传入格式 YYYY-MM-dd hh:mm:ss
 // url encoding
 - (NSString *)getUrlEndcodeString;
+// 移除endcodeing
+- (NSString *)removeUrlEndcodeString;
 // 获取保存文件名
 - (NSString *)getUrlFileName;
 /**

+ 6 - 0
KulexiuForTeacher/KulexiuForTeacher/Common/Tools/Extension/NSString+Extension.m

@@ -242,6 +242,12 @@
     return url;
 }
 
+// 移除endcodeing
+- (NSString *)removeUrlEndcodeString {
+    NSString *url = [self stringByRemovingPercentEncoding];
+    return url;
+}
+
 // 获取保存文件名
 - (NSString *)getUrlFileName {
     NSString *fileName = [[self componentsSeparatedByString:@"/"] lastObject];

+ 5 - 5
KulexiuForTeacher/KulexiuForTeacher/Module/Home/Controller/HomeViewController.m

@@ -536,7 +536,7 @@
             }
             else {
                 KSBaseWKWebViewController *webCtrl = [[KSBaseWKWebViewController alloc] init];
-                webCtrl.url = model.linkUrl;
+                webCtrl.url = [model.linkUrl getUrlEndcodeString];
                 [self.navigationController pushViewController:webCtrl animated:YES];
             }
             
@@ -1598,11 +1598,11 @@
     if (![NSString isEmptyString:model.linkUrl]) {
         if ([model.linkType isEqualToString:@"OUT"]) {
             // 外部浏览器打开
-            [[UIApplication sharedApplication] openURL:[NSURL URLWithString:model.linkUrl] options: @{} completionHandler: nil];
+            [[UIApplication sharedApplication] openURL:[NSURL URLWithString:[model.linkUrl getUrlEndcodeString]] options: @{} completionHandler: nil];
         }
         else {
             KSBaseWKWebViewController *webCtrl = [[KSBaseWKWebViewController alloc] init];
-            webCtrl.url = model.linkUrl;
+            webCtrl.url = [model.linkUrl getUrlEndcodeString];
             [self.navigationController pushViewController:webCtrl animated:YES];
         }
     }
@@ -1624,12 +1624,12 @@
     NSString *linkUrl = self.buttonModel.linkUrl;
     if ([self.buttonModel.linkType isEqualToString:@"OUT"]) {
         // 外部浏览器打开
-        [[UIApplication sharedApplication] openURL:[NSURL URLWithString:linkUrl] options: @{} completionHandler: nil];
+        [[UIApplication sharedApplication] openURL:[NSURL URLWithString:[linkUrl getUrlEndcodeString]] options: @{} completionHandler: nil];
     }
     else {
         if (![NSString isEmptyString:linkUrl]) {
             KSBaseWKWebViewController *webCtrl = [[KSBaseWKWebViewController alloc] init];
-            webCtrl.url = linkUrl;
+            webCtrl.url = [linkUrl getUrlEndcodeString];
             [self.navigationController pushViewController:webCtrl animated:YES];
         }
     }

+ 1 - 1
KulexiuForTeacher/KulexiuForTeacher/Module/Home/NotiferMessage/Controller/NotiferMessageViewController.m

@@ -278,7 +278,7 @@
                 NSString *webUrl = [dict ks_stringValueForKey:@"url"];
                 if (![NSString isEmptyString:webUrl]) {
                     KSBaseWKWebViewController *webCtrl = [[KSBaseWKWebViewController alloc] init];
-                    webCtrl.url = webUrl;
+                    webCtrl.url = [webUrl getUrlEndcodeString];
                     CustomNavViewController *navCtrl = self.tabBarController.selectedViewController;
                     [navCtrl pushViewController:webCtrl animated:YES];
                 }

+ 4 - 0
KulexiuForTeacher/KulexiuForTeacher/Module/Home/ScanView/Controller/KSScanViewController.m

@@ -101,6 +101,7 @@
 - (void)dealWithCheckSource:(NSString *)result {
     if (result) {
         if ([result containsString:hostURL]) {
+            result = [result getUrlEndcodeString];
             KSBaseWKWebViewController *webCtrl = [[KSBaseWKWebViewController alloc] init];
             webCtrl.url = result;
             [self.navigationController pushViewController:webCtrl animated:YES];
@@ -109,6 +110,9 @@
             [self backPreView];
         }
     }
+    else {
+        [self backPreView];
+    }
 }
 
 - (void)backPreView {