// // H5JsApi4DemoTest.m // NebulaDemo // // Created by Glance on 16/12/20. // Copyright © 2016年 Alipay. All rights reserved. // #import "H5JsApi4DemoTest.h" // 该JSApi已在Poseidon-Extra-Config.plist中注册 @implementation H5JsApi4DemoTest - (void)handler:(NSDictionary *)data context:(PSDContext *)context callback:(PSDJsApiResponseCallbackBlock)callback { [super handler:data context:context callback:callback]; UIViewController *vc = context.currentViewController; UIWebView *webView = (UIWebView *)context.currentViewController.psdContentView; NSLog(@"[NEBULADEMO]:JSAPI调用,当前viewController %@, webView:%@, jsApi实例为 %@",vc, webView, self); NSString *appId = context.currentSession.createParam.expandParams[@"appId"]; if (!data) { ErrorCallback(callback, e_inavlid_params); return; } else { callback(@{@"result":@"jsapi-demoTest来自Native的处理结果"}); } } @end