点击app系统消息打开app并进入指定页面

本文涉及的产品
日志服务 SLS,月写入数据量 50GB 1个月
简介: 点击app系统消息打开app并进入指定页面

点击app系统消息可以打开app,解析消息,根据消息里的参数可以跳到指定页面。

大家知道,app启动时首先调用需要进一步完善的函数:- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions(在AppDelegate.m文件或AppDelegate.mm)。若是点击应用图标打开app,launchOptions为nil。若是点击app的系统消消息,打开app,这个系统消息可以传递参数给该函数,参数是launchOptions。

 NSDictionary* message = [launchOptions objectForKey:UIApplicationLaunchOptionsRemoteNotificationKey];

通过上面的代码可以获取到字典。

服务器按照第4个透传消息模版推送的消息,其中自定义字段,键是payload,值时对应的一个json字符串。客户端收到的消息,打印日志如下(我们的推送在推送模块AWGeTuiModule里不是在AppDelegate文件里,所以你看到日志文件名是AWGeTuiModule.m):

2018/09/11 17:29:02:329  AWGeTuiModule.m:AWGeTuiModule.m:-[AWGeTuiModule application:didFinishLaunchingWithOptions:]:37 Verbose:didFinishLaunchingWithOptions
2018/09/11 17:29:02:344  AWGeTuiModule.m:AWGeTuiModule.m:-[AWGeTuiModule application:didFinishLaunchingWithOptions:]:45 Verbose:didFinishLaunchingWithOptions  message:{
    "_ge_" = 1;
    "_gmid_" = "OSS-0911_59e9037e052e7333e399614830e701a7:d910d849e38349e8ab2e7278520d8bcb:2c2ea418e66ec33e367fc1a24223fb65";
    "_gurl_" = "sdk.open.extension.getui.com:8123";
    aps =     {
        alert =         {
            body = test;
            title = "\U60a8\U6709\U4e00\U6761\U672a\U8bfb\U6d88\U606f";
        };
        badge = 2;
        "content-available" = 1;
        "mutable-content" = 1;
        sound = default;
    };
    payload = "{\"title\":\"\U60a8\U6709\U4e00\U6761\U672a\U8bfb\U6d88\U606f\",\"body\":\"test\",\"redirectUrl\":\"https://m.1-joy.com/market/gift/agent/manage.htm?catId=14533\"}";
},[message className]:__NSDictionaryI
2018/09/11 17:29:02:345  AWGeTuiModule.m:AWGeTuiModule.m:-[AWGeTuiModule application:didFinishLaunchingWithOptions:]:49 Verbose:payload:{"title":"您有一条未读消息","body":"test","redirectUrl":"https://m.1-joy.com/market/gift/agent/manage.htm?catId=14533"},[payload className]:__NSCFString
2018/09/11 17:29:02:345  AWGeTuiModule.m:AWGeTuiModule.m:-[AWGeTuiModule application:didFinishLaunchingWithOptions:]:53 Verbose:jsondata:<7b227469 746c6522 3a22e682 a8e69c89 e4b880e6 9da1e69c aae8afbb e6b688e6 81af222c 22626f64 79223a22 74657374 222c2272 65646972 65637455 726c223a 22687474 70733a2f 2f6d2e31 2d6a6f79 2e636f6d 2f6d6172 6b65742f 67696674 2f616765 6e742f6d 616e6167 652e6874 6d3f6361 7449643d 31343533 33227d>,[jsondata className]:NSConcreteMutableData
2018/09/11 17:29:02:345  AWGeTuiModule.m:AWGeTuiModule.m:-[AWGeTuiModule application:didFinishLaunchingWithOptions:]:57 Verbose:jsonObject:{
    body = test;
    redirectUrl = "https://m.1-joy.com/manage.htm?catId=14533";
    title = "\U60a8\U6709\U4e00\U6761\U672a\U8bfb\U6d88\U606f";
},[jsonObject className]:__NSDictionaryI,[jsonObject isKindOfClass:[NSDictionary class]]:1, error:(null)
2018/09/11 17:29:02:346  AWGeTuiModule.m:AWGeTuiModule.m:-[AWGeTuiModule application:didFinishLaunchingWithOptions:]:61 Verbose:redirectUrl:https://m.1-joy.com/market/gift/agent/manage.htm?catId=14533,[redirectUrl className]:__NSCFString

可以看到payload对应的是一个Json串,进行解析后,redirectUrl的地址就是登录后所要强制跳转的页面参数。

个推测试网站的测试消息这样填写。

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
    FLDDLogVerbose(@"didFinishLaunchingWithOptions");
    // [EXT] 重新上线
    [GeTuiSdk startSdkWithAppId:kGeXinAppId appKey:kGeXinAppKey appSecret:kGeXinAppSecret delegate:self];
    // 注册 APNs
    [self registerRemoteNotification];
    // [2-EXT]: 获取启动时收到的APN
    NSDictionary* message = [launchOptions objectForKey:UIApplicationLaunchOptionsRemoteNotificationKey];
    
    FLDDLogVerbose(@"didFinishLaunchingWithOptions  message:%@,[message className]:%@", message, [message className]);
    if (message) {
//        [AWSingleObject sharedInstance].redirectUrl = @"https://m.1-joy.com/market/cat/list.htm";
        NSString *payload = [message objectForKey:@"payload"];
        FLDDLogVerbose(@"payload:%@,[payload className]:%@", payload, [payload className]);
        if(payload)
        {
            self.payloadFlag = YES;
            NSData* jsondata = [payload dataUsingEncoding:NSUTF8StringEncoding];
            FLDDLogVerbose(@"jsondata:%@,[jsondata className]:%@", jsondata, [jsondata className]);
            NSError *error = nil;
            id jsonObject = [NSJSONSerialization JSONObjectWithData:jsondata options:NSJSONReadingAllowFragments error:&error];
            
            FLDDLogVerbose(@"jsonObject:%@,[jsonObject className]:%@,[jsonObject isKindOfClass:[NSDictionary class]]:%d, error:%@", jsonObject ,[jsonObject className], [jsonObject isKindOfClass:[NSDictionary class]], error);
            if(!error && jsonObject && [jsonObject isKindOfClass:[NSDictionary class]])
            {
                NSString *redirectUrl = [jsonObject safeObjectForKey:@"redirectUrl"];
                FLDDLogVerbose(@"redirectUrl:%@,[redirectUrl className]:%@", redirectUrl, [redirectUrl className]);
                if(redirectUrl)
                {
                    [AWSingleObject sharedInstance].redirectUrl = redirectUrl;
//                    [[NSNotificationCenter defaultCenter] postNotificationName:@"redirectLoginNotification" object:nil userInfo:@{@"redirectUrl":@"http://getui.com\\"}];
                }
            }
        }
//        NSString *record = [NSString stringWithFormat:@"[APN]%@, %@", [NSDate date], payload];
        
        //如何跳转页面自己添加代码
        //
        //        self.window.rootViewController = self.viewController;
    }
    
    self.isLaunch = YES;
    return YES;
}

消息解析向上面一样。大姐姐,我试验失败的方案是发送通知,让那个根页面自己调用点击登录按钮事件来实现自动登录并传递参数。经过测试是失败方案。原始是:通知的注册与接收是需要时间的,应该受一个系统线程管理,他做不到立即注册,立即能收到消息,这两者之间有时间差。在个推模块或AppDelegate文件的- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions函数中直接设置根目录页面,这和我们的模块化开发相违背。

我们的处理是,调整模块的加载顺序(由modules.plist里的各个成员的顺序决定),保证组件管理模块首先启动,其次加载框架与日志模块,然后加载个推模块, 加载框架类组件(AWUISkeleton,根目录或tabbar),最后加载登录模块。把个推模块获取的到redirectUrl存入单例对象的变量(单例的生成是可以忽略时间的)中。在设置根页面(登录页面)时,把单例变量赋值给登录页面的成员变量。在AWLoginViewController的viewDidLoad中通过 self.loginView.redirectUrl = _redirectUrl;设置变量,AWLoginView类中重置-(void)setRedirectUrl:(NSString *)redirectUrl函数。通过self.loginPanel.redirectUrl = self.redirectUrl;设置变量,AWLoginPanel类中重置-(void)setRedirectUrl:(NSString *)redirectUrl函数,并调用登录按钮函数。那为何AWLoginViewController不重置-(void)setRedirectUrl:(NSString *)redirectUrl函数呢?因为通常AWLoginViewController在创建成功,并不是立即加载页面控件,而是在回调viewDidLoad函数时加载页面控件,这个函数回调是有时间差的,而-(void)setRedirectUrl:(NSString *)redirectUrl是立即生效的,无时间差的。调用AWLoginView *loginView = [[AWLoginView alloc]init];那么AWLoginView的初始化函数init立即执行,立即创建了页面控件,所以可以用采用重置-(void)setRedirectUrl:(NSString *)redirectUrl函数来实现跳转参数的传递与处理。相关部分代码如下:

AWUISkeleton.m文件

#import "AWLoginViewController.h"

@interface AWUISkeleton ()

@end

@implementation AWUISkeleton

+ (AWUISkeleton *)sharedInstance
{
    static AWUISkeleton *instance = nil;
    static dispatch_once_t onceToken;
    dispatch_once(&onceToken, ^{
        instance = [[AWUISkeleton alloc] init];
    });
    return instance;
}

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
    FLDDLogVerbose(@"didFinishLaunchingWithOptions");
//    self.tabBarController = [[UXTabBarController alloc] initWithViewControllers:@[[[AWHomeTitlesViewController alloc] init], [[AWArtClassificationViewController alloc] init], [[AWFindViewController alloc] init], [[AWMineViewController alloc] init]]];
//    self.tabBarController.uxTabBarControllerDelegate = self;
    AWLoginViewController *loginViewController = [[AWLoginViewController alloc] init];
    if(!isEmptyString([AWSingleObject sharedInstance].redirectUrl))
    {
        loginViewController.redirectUrl = [AWSingleObject sharedInstance].redirectUrl;
    }
    YXNavigationController *navigationController = [[YXNavigationController alloc] initWithRootViewController:loginViewController];
    navigationController.navigationBar.hidden = YES;
    navigationController.navigationBarHidden = YES;
    if ([UIApplication sharedApplication].delegate.window == nil) {
        [UIApplication sharedApplication].delegate.window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds];
        [UIApplication sharedApplication].delegate.window.backgroundColor = [UIColor blackColor];
    }
    [UIApplication sharedApplication].delegate.window.rootViewController = navigationController;
    [[UIApplication sharedApplication].delegate.window makeKeyAndVisible];

    [[NSNotificationCenter defaultCenter] postNotificationName:skeletonDidFinishLaunchNotification object:self userInfo:launchOptions];
    return YES;
}

@end

AWLoginViewController.m文件

- (void)viewDidLoad {
    [super viewDidLoad];
    AWLoginView *loginView = [[AWLoginView alloc]init];
    [self.view addSubview:loginView];
#if AGENT_APP
    loginView.frame = CGRectMake(0, 0, kUIScreenWidth, kUIScreenHeight);
#else
    loginView.frame = CGRectMake(0, kMainStatusBarHeight, kUIScreenWidth, kUIScreenHeight - kMainStatusBarHeight);
#endif
    self.loginView = loginView;
    self.loginView.redirectUrl = _redirectUrl;
    FLDDLogVerbose(@"redirectUrl:%@", _redirectUrl);
}

AWLoginView.m文件

-(void)setRedirectUrl:(NSString *)redirectUrl
{
    _redirectUrl = redirectUrl;
    if(!isEmptyString(self.redirectUrl))
    {
        self.loginPanel.isRedirectLoginFlag = YES;
    }
    self.loginPanel.redirectUrl = self.redirectUrl;
    FLDDLogVerbose(@"redirectUrl:%@", self.loginPanel.redirectUrl);
}

AWLoginPanel.m文件

-(void)setRedirectUrl:(NSString *)redirectUrl
{
    _redirectUrl = redirectUrl;
    FLDDLogVerbose(@"redirectUrl:%@, self.isRedirectLoginFlag:%d", self.redirectUrl, self.isRedirectLoginFlag);
    if(self.isRedirectLoginFlag && !isEmptyString(self.redirectUrl))
    {
        [self login:self.weChatLoginButton];
    }
}

-(void)login:(UIButton *)button{
    FLDDLogVerbose(@"self.isRedirectLoginFlag:%d, self.redirectUrl:%@",self.isRedirectLoginFlag, self.redirectUrl);
    if(self.isNotSelectAgreement)
    {
        [[AWNoticeView currentNotice] showErrorNotice:[NSString stringWithFormat:@"请先%@", kAgreeServiceAgreement]];
        return;
    }
    if(!(self.isLargerCurrentVersion) || self.isRedirectLoginFlag)
    {
        if ([WXApi isWXAppInstalled]) {
            if(self.isRedirectLoginFlag)
            {
                self.isRedirectLoginingFlag = YES;
            }
            self.isRedirectLoginFlag = NO;
            SendAuthReq *req = [[SendAuthReq alloc]init];
            req.scope = @"snsapi_userinfo";
            NSLog(@"kWeChatKey:%@", kWeChatKey);
            req.openID = kWeChatKey;
            req.state = @"1245";
            [WXApi sendReq:req];
        }else{
            self.isRedirectLoginingFlag = NO;
            self.isRedirectLoginFlag = NO;
            //把微信登录的按钮隐藏掉。
            [[AWNoticeView currentNotice] showErrorNotice:@"您没有安装微信客户端"];
        }
    }
    else
    {
        //app 消息推送 点击跳转 到 具体功能页面 参数 redirectUrl
        [MGJRouter openURL:@"gb://passwordLogin" completion:nil];
    }
}

#pragma mark 微信登录回调。
-(void)loginSuccessByCode
{
    self.appdelegate = (AppDelegate *)[[UIApplication sharedApplication] delegate];
    @weakify(self);
    self.appdelegate.loginSuccessByCodeBlock = ^(BaseResp *resp) {
        @strongify(self);
        /*
         enum  WXErrCode {
         WXSuccess           = 0,    成功
         WXErrCodeCommon     = -1,  普通错误类型
         WXErrCodeUserCancel = -2,    用户点击取消并返回
         WXErrCodeSentFail   = -3,   发送失败
         WXErrCodeAuthDeny   = -4,    授权失败
         WXErrCodeUnsupport  = -5,   微信不支持
         };
         */
        if ([resp isKindOfClass:[SendAuthResp class]]) {   //授权登录的类。
            if (resp.errCode == 0) {  //成功。
                //这里处理回调的方法 。 通过代理吧对应的登录消息传送过去。
                SendAuthResp *resp2 = (SendAuthResp *)resp;
                if(!isEmptyString(resp2.code))
                {
                    FLDDLogVerbose(@"code %@",resp2.code);
                    [AWSingleObject sharedInstance].wetChatCode = resp2.code;
//                    self.redirectUrl = @"https://m.1-joy.com/market/gift/agent/manage.htm?catId=14533";
                    NSString *urlString = [NSString stringWithFormat:@"https://m.1-joy.com/redirect.htm?code=%@&appId=%@",resp2.code, kWeChatKey];
                    if(self.isRedirectLoginingFlag && !isEmptyString(urlString))
                    {
                        urlString = [NSString stringWithFormat:@"%@&redirectUrl=%@", urlString, self.redirectUrl];
                    }
                    FLDDLogVerbose(@"urlString:%@", urlString);
                    NSMutableDictionary *userInfo = [AWJsWebEntity creatWithUrl:urlString];
                    [MGJRouter openURL:@"gb://WKWeb" withUserInfo:userInfo completion:nil];
                }
                self.isRedirectLoginingFlag = NO;
            }
            else if (resp.errCode != -2){ //失败
                FLDDLogVerbose(@"error %@",resp.errStr);
                self.isRedirectLoginingFlag = NO;
                [[AWNoticeView currentNotice] showErrorNotice:noWetChatMessage];
            }
        }
    };
}

下面是页面跳转时的部分日志:

2018/09/11 17:29:02:346  AWGeTuiModule.m:AWGeTuiModule.m:-[AWGeTuiModule application:didFinishLaunchingWithOptions:]:61 Verbose:redirectUrl:https://m.1-joy.com/manage.htm?catId=14533,[redirectUrl className]:__NSCFString
2018/09/11 17:29:02:346  AWUISkeleton.m:AWUISkeleton.m:-[AWUISkeleton application:didFinishLaunchingWithOptions:]:39 Verbose:didFinishLaunchingWithOptions
2018/09/11 17:29:02:616  AWLoginViewController.m:AWLoginViewController.m:-[AWLoginViewController viewDidLoad]:36 Verbose:page
2018/09/11 17:29:02:640  AWLoginPane.m:AWLoginPanel.m:-[AWLoginPanel setRedirectUrl:]:179 Verbose:redirectUrl:https://m.1-joy.com/manage.htm?catId=14533, self.isRedirectLoginFlag:1
2018/09/11 17:29:02:640  AWLoginPane.m:AWLoginPanel.m:-[AWLoginPanel login:]:317 Verbose:self.isRedirectLoginFlag:1, self.redirectUrl:https://m.1-joy.com/manage.htm?catId=14533
2018/09/11 17:29:02:717  AWLoginView.m:AWLoginView.m:-[AWLoginView setRedirectUrl:]:194 Verbose:redirectUrl:https://m.1-joy.com/manage.htm?catId=14533
2018/09/11 17:29:02:717  AWLoginViewController.m:AWLoginViewController.m:-[AWLoginViewController viewDidLoad]:48 Verbose:redirectUrl:https://m.1-joy.com/manage.htm?catId=14533
2018/09/11 17:29:03:181  AWBizModule.m:AWBizModule.m:-[AWBizModule monitoringNetworkStatus]_block_invoke:187 Verbose:status:2
2018/09/11 17:29:03:181  AWBizModule.m:AWBizModule.m:-[AWBizModule monitoringNetworkStatus]_block_invoke:189 Verbose:networkStatus:2
2018/09/11 17:29:03:288  AWGeTuiModule.m:AWGeTuiModule.m:-[AWGeTuiModule GeTuiSDkDidNotifySdkState:]:281 Debug:aStatus:0
2018/09/11 17:29:03:294  AWGeTuiModule.m:AWGeTuiModule.m:-[AWGeTuiModule application:didRegisterForRemoteNotificationsWithDeviceToken:]:131 Debug:
>>>[DeviceToken Success]:2d8f670a8a3213768b98c9685713bf7f4900829fec3d977a3303d2fbdc638046

 kGeXinAppId:pQBQPh84rgAEnXRP9xR4Q4
2018/09/11 17:29:03:295  AWGeTuiModule.m:AWGeTuiModule.m:-[AWGeTuiModule application:didRegisterForRemoteNotificationsWithDeviceToken:]:141 Debug:函数 clientId:2c2ea418e66ec33e367fc1a24223fb65
2018/09/11 17:29:03:974  AWUpdateVersionModel.m:AWUpdateVersionModel.m:-[AWUpdateVersionModel setupRACCommand]_block_invoke_3:91 Verbose:data:{
    appCode = agent;
    appId = 4;
    appName = "\U827a\U4eab\U4f18\U9009";
    remark = "";
    type = ios;
    update = N;
    version = "1.0.0";
}
2018/09/11 17:29:03:975  AWBizModule.m:AWBizModule.m:-[AWBizModule forceUpdte]_block_invoke:361 Verbose:resultUpdateVersionEntity:<AWUpdateVersionEntity: 0x13de73980>
2018/09/11 17:29:04:169  AWGeTuiModule.m:AWGeTuiModule.m:-[AWGeTuiModule GeTuiSDkDidNotifySdkState:]:281 Debug:aStatus:2
2018/09/11 17:29:04:495  AWLoginPane.m:AWLoginPanel.m:-[AWLoginPanel loginSuccessByCode]_block_invoke:377 Verbose:code 01185ZtO1Ck1b21e0juO1WJTtO185ZtP
2018/09/11 17:29:04:495  AWLoginPane.m:AWLoginPanel.m:-[AWLoginPanel loginSuccessByCode]_block_invoke:385 Verbose:urlString:https://m.1-joy.com/redirect.htm?code=01185ZtO1Ck1b21e0juO1WJTtO185ZtP&appId=wxbfa2c5c227490fca&redirectUrl=https://m.1-joy.com/manage.htm?catId=14533
2018/09/11 17:29:04:999  AWWKWebViewController.m:AWWKWebViewController.m:-[AWWKWebViewController handleUIApplicationWillChangeStatusBarFrameNotification:]:275 Debug:函数
2018/09/11 17:29:05:944  AWWKWebViewController.m:AWWKWebViewController.m:-[AWWKWebViewController webView:decidePolicyForNavigationAction:decisionHandler:]:854 Verbose:isHaveTelLoginPage:0, strRequest:https://m.1-joy.com/redirect.htm?code=01185ZtO1Ck1b21e0juO1WJTtO185ZtP&appId=wxbfa2c5c227490fca&redirectUrl=https://m.1-joy.com/manage.htm?catId=14533, navigationAction.request.HTTPMethod:GET, navigationAction.request.allHTTPHeaderFields:{
    Accept = "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8";
    "User-Agent" = "Mozilla/5.0 (iPhone; CPU iPhone OS 11_4_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15G77";
}
2018/09/11 17:29:05:945  AWWKWebViewController.m:AWWKWebViewController.m:-[AWWKWebViewController updateNavigationItems:]:766 Verbose:current url:https://m.1-joy.com/redirect.htm?code=01185ZtO1Ck1b21e0juO1WJTtO185ZtP&appId=wxbfa2c5c227490fca&redirectUrl=https://m.1-joy.com/manage.htm?catId=14533
2018/09/11 17:29:05:954  AWGeTuiModule.m:AWGeTuiModule.m:-[AWGeTuiModule GeTuiSDkDidNotifySdkState:]:281 Debug:aStatus:1
2018/09/11 17:29:05:955  AWGeTuiModule.m:AWGeTuiModule.m:-[AWGeTuiModule GeTuiSdkDidRegisterClient:]:254 Debug:函数 clientId:2c2ea418e66ec33e367fc1a24223fb65
2018/09/11 17:29:06:366  AWWKWebViewController.m:AWWKWebViewController.m:-[AWWKWebViewController updateNavigationItems:]:766 Verbose:current url:https://m.1-joy.com/cat/list.htm
2018/09/11 17:29:06:369  AWWKWebViewController.m:AWWKWebViewController.m:-[AWWKWebViewController webView:decidePolicyForNavigationAction:decisionHandler:]:854 Verbose:isHaveTelLoginPage:0, strRequest:https://m.1-joy.com/cat/list.htm, navigationAction.request.HTTPMethod:GET, navigationAction.request.allHTTPHeaderFields:{
    Accept = "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8";
    "Accept-Encoding" = "br, gzip, deflate";
    "Accept-Language" = "zh-cn";
    "User-Agent" = "Mozilla/5.0 (iPhone; CPU iPhone OS 11_4_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15G77";
}
2018/09/11 17:29:06:369  AWWKWebViewController.m:AWWKWebViewController.m:-[AWWKWebViewController updateNavigationItems:]:766 Verbose:current url:https://m.1-joy.com/cat/list.htm
2018/09/11 17:29:07:878  AWWKWebWeipaiJSBridgeModel.m:AWWKWebWeipaiJSBridgeModel.m:-[AWWKWebWeipaiJSBridgeModel processWeipaiJSBridgeMessage:]:133 Verbose:<AWMenuItemsEntity: 0x13fe24f50>
2018/09/11 17:29:11:986  AWWKWebViewController.m:AWWKWebViewController.m:-[AWWKWebViewController webView:didFinishNavigation:]:778 Verbose:isHaveTelLoginPage:0, webView.URL strRequest:https://m.1-joy.com/cat/list.htm
2018/09/11 17:29:11:987  AWWKWebViewController.m:AWWKWebViewController.m:-[AWWKWebViewController updateNavigationItems:]:766 Verbose:current url:https://m.1-joy.com/cat/list.htm
2018/09/11 17:29:12:079  AWWKWebViewController.m:AWWKWebViewController.m:-[AWWKWebViewController webView:decidePolicyForNavigationAction:decisionHandler:]:854 Verbose:isHaveTelLoginPage:0, strRequest:https://m.1-joy.com/manage.htm?catId=14533, navigationAction.request.HTTPMethod:GET, navigationAction.request.allHTTPHeaderFields:{
    Accept = "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8";
    Referer = "https://m.1-joy.com/cat/list.htm";
    "User-Agent" = "Mozilla/5.0 (iPhone; CPU iPhone OS 11_4_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15G77Yixiangweipai/1.0.0";
}
2018/09/11 17:29:12:079  AWWKWebViewController.m:AWWKWebViewController.m:-[AWWKWebViewController updateNavigationItems:]:766 Verbose:current url:https://m.1-joy.com/cat/list.htm
2018/09/11 17:29:12:125  AWWKWebViewController.m:AWWKWebViewController.m:-[AWWKWebViewController updateNavigationItems:]:766 Verbose:current url:https://m.1-joy.com/manage.htm?catId=14533
2018/09/11 17:29:12:954  AWWKWebWeipaiJSBridgeModel.m:AWWKWebWeipaiJSBridgeModel.m:-[AWWKWebWeipaiJSBridgeModel processWeipaiJSBridgeMessage:]:133 Verbose:<AWMenuItemsEntity: 0x13ded7fc0>
2018/09/11 17:29:14:318  AWWKWebViewController.m:AWWKWebViewController.m:-[AWWKWebViewController webView:didFinishNavigation:]:778 Verbose:isHaveTelLoginPage:0, webView.URL strRequest:https://m.1-joy.com/manage.htm?catId=14533
2018/09/11 17:29:14:318  AWWKWebViewController.m:AWWKWebViewController.m:-[AWWKWebViewController updateNavigationItems:]:766 Verbose:current url:https://m.1-joy.com/manage.htm?catId=14533
2018/09/11 17:34:03:433  AWWKWebViewController.m:AWWKWebViewController.m:-[AWWKWebViewController updateNavigationItems:]:766 Verbose:current url:https://m.1-joy.com/manage.htm?catId=14533#!/https://m.1-joy.com/detail2.htm?giftId=7656
2018/09/11 17:34:13:227  AWGeTuiModule.m:AWGeTuiModule.m:-[AWGeTuiModule GeTuiSDkDidNotifySdkState:]:281 Debug:aStatus:2

相关实践学习
日志服务之使用Nginx模式采集日志
本文介绍如何通过日志服务控制台创建Nginx模式的Logtail配置快速采集Nginx日志并进行多维度分析。
目录
相关文章
|
13天前
|
安全 定位技术 API
婚恋交友系统匹配功能 婚恋相亲软件实现定位 语音社交app红娘系统集成高德地图SDK
在婚恋交友系统中集成高德地图,可实现用户定位、导航及基于地理位置的匹配推荐等功能。具体步骤如下: 1. **注册账号**:访问高德开放平台,注册并创建应用。 2. **获取API Key**:记录API Key以备开发使用。 3. **集成SDK**:根据开发平台下载并集成高德地图SDK。 4. **配置功能**:实现定位、导航及基于位置的匹配推荐。 5. **注意事项**:保护用户隐私,确保API Key安全,定期更新地图数据,添加错误处理机制。 6. **测试优化**:完成集成后进行全面测试,并根据反馈优化功能。 通过以上步骤,提升用户体验,提供更便捷的服务。
|
14天前
|
运维 小程序 前端开发
结合圈层营销策略,打造稳定可靠的圈子app系统,圈子小程序!
圈子系统是一种社交平台,用户可按兴趣、职业等创建或加入“圈子”,进行内容发布、讨论和资源共享。开发时需考虑需求分析、技术选型(如PHP、MySQL)、页面设计、功能实现(注册、登录、发布、评论等)、测试优化及运维管理。圈层营销则通过精准化、高端化的方式传递品牌信息,增强客户归属感。圈子小程序基于微信等平台,具备跨平台、便捷性和社交性,开发过程中需明确需求、选择技术框架、设计页面并确保稳定性和流畅性。
|
23小时前
|
小程序 数据挖掘
圈子系统兴趣讨论群组的创建,社群运营的重要性及策略制定,同城交友app、小程序方式的创新
### 圈子系统与社群运营简介 圈子系统是社交平台中的功能模块,允许用户创建和管理兴趣小组,设置名称、规则等,吸引志同道合者加入。通过浏览不同圈子,用户可以选择感兴趣的群体参与。社群运营则通过对具有共同需求或兴趣的用户进行组织和管理,提升品牌影响力和商业价值。有效的社群运营策略包括明确定位、制定策略、持续输出有价值内容、定期举办活动、合理分配角色及数据监测优化,从而增强用户粘性和活跃度。 **圈子系统源码获取:** [链接](https://gitee.com/multi-customer-software/qz)
22 9
|
7天前
年轻人如果运用圈子系统进行扩列,社交圈子论坛app扩列的好处,兴趣行业圈子提升社交技能
年轻人通过圈子系统扩列,在数字化时代积极扩展社交网络、增进人际交往。圈子系统是社交媒体中的虚拟社区,提供内容发布、互动等功能。扩列能拓宽社交圈、增进交流、获取信息资源、提升社交技能并发现商业机会。策略包括明确目标、筛选适合的圈子、积极参与和保持诚信。同时需注意保护隐私、警惕不良信息及合理规划时间。
|
12天前
|
前端开发 算法 安全
一站式搭建相亲交友APP丨交友系统源码丨语音视频聊天社交软件平台系统丨开发流程步骤
本文详细介绍了一站式搭建相亲交友APP的开发流程,涵盖需求分析、技术选型、系统设计、编码实现、测试、部署上线及后期维护等环节。通过市场调研明确平台定位与功能需求,选择适合的技术栈(如React、Node.js、MySQL等),设计系统架构和数据库结构,开发核心功能如用户注册、匹配算法、音视频聊天等,并进行严格的测试和优化,确保系统的稳定性和安全性。最终,通过云服务部署上线,并持续维护和迭代,提供一个功能完善、安全可靠的社交平台。
76 6
|
13天前
|
前端开发 数据库 UED
uniapp开发,前后端分离的陪玩系统优势,陪玩app功能特点,线上聊天线下陪玩,只要4800
前后端分离的陪玩系统将前端(用户界面)和后端(服务器逻辑)分开开发,前者负责页面渲染与用户交互,后者处理数据并提供接口。该架构提高开发效率、优化用户体验、增强可扩展性和稳定性,降低维护成本,提升安全性。玩家可发布陪玩需求,陪玩人员发布服务信息,支持在线聊天、预约及线下陪玩功能,满足多样化需求。[演示链接](https://www.51duoke.cn/games/?id=7)
|
15天前
|
移动开发 小程序 前端开发
使用php开发圈子系统特点,如何获取圈子系统源码,社交圈子运营以及圈子系统的功能特点,圈子系统,允许二开,免费源码,APP 小程序 H5
开发一个圈子系统(也称为社交网络或社群系统)可以是一个复杂但非常有趣的项目。以下是一些关键特点和步骤,帮助你理解如何开发、获取源码以及运营一个圈子系统。
87 3
|
20天前
|
机器学习/深度学习 前端开发 算法
婚恋交友系统平台 相亲交友平台系统 婚恋交友系统APP 婚恋系统源码 婚恋交友平台开发流程 婚恋交友系统架构设计 婚恋交友系统前端/后端开发 婚恋交友系统匹配推荐算法优化
婚恋交友系统平台通过线上互动帮助单身男女找到合适伴侣,提供用户注册、个人资料填写、匹配推荐、实时聊天、社区互动等功能。开发流程包括需求分析、技术选型、系统架构设计、功能实现、测试优化和上线运维。匹配推荐算法优化是核心,通过用户行为数据分析和机器学习提高匹配准确性。
63 3
|
29天前
|
缓存 移动开发 小程序
uni-vue3-wetrip自创跨三端(H5+小程序+App)酒店预订app系统模板
vue3-uni-wetrip原创基于vite5+vue3+uniapp+pinia2+uni-ui等技术开发的仿去哪儿/携程预约酒店客房app系统。实现首页酒店展示、预订搜索、列表/详情、订单、聊天消息、我的等模块。支持编译H5+小程序+App端。
74 8
毋庸置疑,就是要买好的上门家政APP系统!
在家政APP平台建设中,选择合适的家政系统至关重要。它直接影响平台的运营与未来发展。以低价为唯一标准选择系统,可能因质量问题导致重大损失。应注重系统的质量与适应性,确保平台稳定运行,支持市场快速变化的需求。

热门文章

最新文章