APP中Web容器的核心实现
NSString *jsStr = @"执行的JS代码";
[webView stringByEvaluatingJavaScriptFromString:jsStr];
[webView evaluateJavaScript:@"执行的JS代码" completionHandler:^(id _Nullable response, NSError * _Nullable error) {}];
#import <Foundation/Foundation.h>
#import <JavaScriptCore/JavaScriptCore.h> @protocol JSNativeProtocol <JSExport> - (NSDictionary *)QRCodeScan:(NSDictionary *)param; @end @interface AppJSModel : NSObject <JSNativeProtocol> @end #import "AppJSModel.h" @implementation AppJSModel
- (NSDictionary *)QRCodeScan:(NSDictionary *)param {
NSLog(@"param: %@",param);
return @{@"name":@"jack"};
}
@end
import './App.css';
import { useState } from 'react'; function OriginalWebViewApp() {
const[name, setName] = useState('') // 0.公共
//原生发消息给JS,JS的回调
window.qrResult = (res)=>{
setName(res)
return '-------: '+res
}
// scheme拦截
const localPostion = () => {
window.location.href = 'position://localPosition?name=jack&age=20'
} // 2.UIWebView的交互
//js发消息给原生
const qrActionOnAppModel = () => {
const res = window.appModel.QRCodeScan({"name":"value"})
alert(res.name)
}
const showAlert = () => {
window.showAlert()
} return (
<div className="App">
<div>------------------公共------------------</div>
<div><a href='position://abc?name=jack' style={{color:'white'}}>scheme拦截1:定位</a></div>
<button onClick={localPostion}>scheme拦截2</button>
<div>
原生执行代码的结果:{name}
</div> <div>------------------UIWebView------------------</div>
<button onClick={qrActionOnAppModel}>点击扫码</button>
<button onClick={showAlert}>弹窗</button>
</div>
)
} export default OriginalWebViewApp
- (void)webViewDidFinishLoad:(UIWebView *)webView {
JSContext *jsContext = [webView valueForKeyPath:@"documentView.webView.mainFrame.javaScriptContext"]; AppJSModel *jsModel = [AppJSModel new];
jsContext[@"appModel"] = jsModel;
jsContext[@"showAlert"] = ^(){
dispatch_async(dispatch_get_main_queue(), ^{
UIAlertController* alert = [UIAlertController alertControllerWithTitle:@"请输入支付信息" message:@"" preferredStyle:UIAlertControllerStyleAlert];
UIAlertAction* defaultAction = [UIAlertAction actionWithTitle:@"OK" style:UIAlertActionStyleDefault handler:nil];
[alert addAction:defaultAction];
UIAlertAction* cancleAction = [UIAlertAction actionWithTitle:@"Cancle" style:UIAlertActionStyleCancel handler:nil];
[alert addAction:cancleAction]; [alert addTextFieldWithConfigurationHandler:^(UITextField * _Nonnull textField) {
textField.placeholder=@"请输入用户名";
}];
[alert addTextFieldWithConfigurationHandler:^(UITextField * _Nonnull textField) {
textField.placeholder=@"请输入支付密码";
textField.secureTextEntry=YES;
}]; [self presentViewController:alert animated:YES completion:nil];
});
};
}
Scheme拦截
- (BOOL)webView:(UIWebView *)webView shouldStartLoadWithRequest:(NSURLRequest *)request navigationType:(UIWebViewNavigationType)navigationType {
if ([request.URL.scheme isEqualToString:@"position"]) {
//自定义处理定位scheme
JSContext *jsContext = [webView valueForKeyPath:@"documentView.webView.mainFrame.javaScriptContext"];
NSString *jsCode = @"qrResult('杭州,之江')";
[jsContext evaluateScript:jsCode];
return NO;
} return YES;
}
import './App.css';
import { useState } from 'react'; function OriginalWebViewApp() {
const[name, setName] = useState('') // 0.公共
//原生发消息给JS,JS的回调
window.qrResult = (res)=>{
setName(res)
return '-------: '+res
}
// scheme拦截
const localPostion = () => {
window.location.href = 'position://localPosition?name=jack&age=20'
} // 1.WKWebView的交互
//js发消息给原生
const qrAction = () => {
window.webkit.messageHandlers.QRCodeScan.postMessage({"name":"value"})
} return (
<div className="App">
<div>------------------公共------------------</div>
<div><a href='position://abc?name=jack' style={{color:'white'}}>scheme拦截1:定位</a></div>
<button onClick={localPostion}>scheme拦截2</button>
<div>
原生执行代码的结果:{name}
</div> <div>------------------WKWebView------------------</div>
<button onClick={qrAction}>点击扫描</button>
</div>
)
} export default OriginalWebViewApp
override func viewDidLoad() {
super.viewDidLoad() // WKWebViewConfiguration: 用于配置WKWebView的属性和行为, 常见的操作有
let webViewConfiguration = WKWebViewConfiguration() //1.配置WKUserContentController,管理WKUserScript(cookie脚本)和WKScriptMessageHandler原生与JS的交互
let userContentController = WKUserContentController()
webViewConfiguration.userContentController = userContentController
//添加WKScriptMessageHandler脚本处理
userContentController.add(self, name: "QRCodeScan")
//添加WKUserScript,injectionTime注入时机为atDocumentStart页面加载时在,forMainFrameOnly不只在主框架中注入,所有的框架都注入。
let cookieScript = WKUserScript(source: "document.cookie = 'cookieName=cookieValue; domain=example.com; path=/';", injectionTime: .atDocumentStart, forMainFrameOnly: false)
userContentController.addUserScript(cookieScript) //2.自定义处理网络,处理Scheme为position的定位网络操作
webViewConfiguration.setURLSchemeHandler(self, forURLScheme: "position") //3.偏好配置WKPreferences,设置网页缩放,字体
let preferences = WKPreferences()
preferences.minimumFontSize = 10
if #available(iOS 14, *) {
let webpagePreferences = WKWebpagePreferences()
webpagePreferences.allowsContentJavaScript = true
webViewConfiguration.defaultWebpagePreferences = webpagePreferences
} else {
preferences.javaScriptEnabled = true
}
preferences.javaScriptCanOpenWindowsAutomatically = true
webViewConfiguration.preferences = preferences //4.多媒体设置,设置视频自动播放,画中画,逐步渲染
webViewConfiguration.allowsInlineMediaPlayback = true
webViewConfiguration.allowsPictureInPictureMediaPlayback = true
webViewConfiguration.allowsAirPlayForMediaPlayback = true
webViewConfiguration.suppressesIncrementalRendering = true //5.cookie设置
//WKWebView中HTTPCookieStorage.shared单例默认管理着所有的cookie,一般无需我们做额外的操作,如果想单独添加一个cookie,可以把创建的cookie放置到HTTPCookieStorage.shared中即可。
//创建cookie对象
let properties = [
HTTPCookiePropertyKey.name: "cookieName",
HTTPCookiePropertyKey.value: "cookieValue",
HTTPCookiePropertyKey.domain: "example.com",
HTTPCookiePropertyKey.path: "/",
HTTPCookiePropertyKey.expires: NSDate(timeIntervalSinceNow: 31556926)
] as [HTTPCookiePropertyKey : Any]
let cookie = HTTPCookie(properties: properties)!
// 将cookie添加到cookie storage中
HTTPCookieStorage.shared.setCookie(cookie) webView = WKWebView(frame: .zero, configuration: webViewConfiguration)
webView.uiDelegate = self
webView.navigationDelegate = self
self.view.addSubview(webView) loadURL(urlString: "http://localhost:3000/")
}
//WKScriptMessageHandler
extension H5WKWebViewContainerController {
func userContentController(_ userContentController: WKUserContentController, didReceive message: WKScriptMessage) {
if message.name == "QRCodeScan" {
print(message) //JS回调,原生处理完后,通知JS结果
//原生给js的回调事件 会通过”原生调用js“方式放入到js执行环境的messageQueue中
let script = "qrResult('jack')"
message.webView?.evaluateJavaScript(script,completionHandler: { res, _ in
print(res)
}) }
}
}
// 自定义处理网络请求Scheme
// WKURLSchemeHandler 的 Delegate
extension H5WKWebViewContainerController {
func webView(_ webView: WKWebView, start urlSchemeTask: WKURLSchemeTask) {
if urlSchemeTask.request.url?.scheme == "position" {
//自定义处理定位scheme
webView.evaluateJavaScript("qrResult('杭州,之江')")
}
print(webView)
} func webView(_ webView: WKWebView, stop urlSchemeTask: WKURLSchemeTask) {
print(webView)
}
}
- (void)registerHandler:(NSString *)handlerName handler:(WVJBHandler)handler;
- (void)callHandler:(NSString *)handlerName data:(id)data
- (void)viewDidLoad {
[super viewDidLoad];
// Do any additional setup after loading the view. WKWebView *wkWebView = [[WKWebView alloc] initWithFrame:self.view.frame];
wkWebView.navigationDelegate = self;
[self.view addSubview:wkWebView]; [WebViewJavascriptBridge enableLogging];
self.bridge = [WebViewJavascriptBridge bridgeForWebView:wkWebView]; // 在JS上下文中注册callOC方法
[self.bridge registerHandler:@"testObjcCallback" handler:^(id data, WVJBResponseCallback responseCallback) {
NSLog(@"收到了JS的调用");
responseCallback(@"Object-C Received");
}]; // iOS调用JS
[self.bridge callHandler:@"testJavascriptHandler" data:@{@"state":@"before ready"}]; NSURLRequest *req = [NSURLRequest requestWithURL:[NSURL URLWithString:@"http://localhost:3000/"]];
[wkWebView loadRequest:req];
}
import React from "react" function setupWebViewJavascriptBridge(callback) {
if (window.WebViewJavascriptBridge) { return callback(window.WebViewJavascriptBridge); }
if (window.WVJBCallbacks) { return window.WVJBCallbacks.push(callback); }
window.WVJBCallbacks = [callback];
var WVJBIframe = document.createElement('iframe');
WVJBIframe.style.display = 'none';
WVJBIframe.src = 'https://__bridge_loaded__';
document.documentElement.appendChild(WVJBIframe);
setTimeout(function() { document.documentElement.removeChild(WVJBIframe) }, 0)
} function WebViewJavaScriptBridgeApp() { return (
<div className="WebViewJavaScriptBridgeApp">
<div>---------WebViewJavaScript---------</div>
<div id="buttons"></div>
<div id="log"></div>
<div>
{
setupWebViewJavascriptBridge(function(bridge) {
var uniqueId = 1
function log(message, data) {
var log = document.getElementById('log')
var el = document.createElement('div')
el.className = 'logLine'
el.innerHTML = uniqueId++ + '. ' + message + ':<br/>' + JSON.stringify(data)
if (log.children.length) { log.insertBefore(el, log.children[0]) }
else { log.appendChild(el) }
} bridge.registerHandler('testJavascriptHandler', function(data, responseCallback) {
log('ObjC called testJavascriptHandler with', data)
var responseData = { 'Javascript Says':'Right back atcha!' }
log('JS responding with', responseData)
if (responseCallback !== undefined) {
responseCallback(responseData)
}
}) document.body.appendChild(document.createElement('br'))
if (document.getElementById('buttons') === null) {
setTimeout(function() {
document.getElementById('buttons').innerHTML = ""
var callbackButton = document.getElementById('buttons').appendChild(document.createElement('button'))
callbackButton.innerHTML = 'js 调用 OC方法'
callbackButton.onclick = function(e) {
e.preventDefault()
log('JS calling handler "testObjcCallback"')
bridge.callHandler('testObjcCallback', {'foo': 'bar'}, function(response) {
log('JS got response', response)
})
}
},0)
} })
}
</div>
</div>
)
} export default WebViewJavaScriptBridgeApp
window.WebViewJavascriptBridge = {
// 保存js注册的处理函数:messageHandlers[handlerName] = handler;
registerHandler: registerHandler,
//JS调用OC方法
callHandler: callHandler,
disableJavscriptAlertBoxSafetyTimeout: disableJavscriptAlertBoxSafetyTimeout,
//JS调用OC的消息队列
_fetchQueue: _fetchQueue,
//JS处理OC过来的方法调用。
_handleMessageFromObjC: _handleMessageFromObjC
};
function _fetchQueue() {
var messageQueueString = JSON.stringify(sendMessageQueue);
sendMessageQueue = [];
return messageQueueString;
}
NSMutableDictionary* message = [NSMutableDictionary dictionary];
message[@"data"] = data; NSString* callbackId = [NSString stringWithFormat:@"objc_cb_%ld", ++_uniqueId];
self.responseCallbacks[callbackId] = [responseCallback copy];
message[@"callbackId"] = callbackId;
message[@"handlerName"] = handlerName;
@interface WebViewJavascriptBridgeBase : NSObject
// 在成员变量中定义字段responseCallbacks
@property (strong, nonatomic) NSMutableDictionary* responseCallbacks;
@end //发送消息时,保存回调ID:回调函数键值对。
- (void)sendData:(id)data responseCallback:(WVJBResponseCallback)responseCallback handlerName:(NSString*)handlerName {
NSMutableDictionary* message = [NSMutableDictionary dictionary]; if (data) {
message[@"data"] = data;
} if (responseCallback) {
NSString* callbackId = [NSString stringWithFormat:@"objc_cb_%ld", ++_uniqueId];
self.responseCallbacks[callbackId] = [responseCallback copy];
message[@"callbackId"] = callbackId;
} if (handlerName) {
message[@"handlerName"] = handlerName;
}
[self _queueMessage:message];
}
// 在JS全局上下文中定义对象responseCallbacks
var responseCallbacks = {};
function _doSend(message, responseCallback) {
if (responseCallback) {
var callbackId = 'cb_'+(uniqueId++)+'_'+new Date().getTime();
//保存回调id:回调方法,键值对
responseCallbacks[callbackId] = responseCallback;
message['callbackId'] = callbackId;
}
sendMessageQueue.push(message);
messagingIframe.src = CUSTOM_PROTOCOL_SCHEME + '://' + QUEUE_HAS_MESSAGE;
}
- (void)webView:(WKWebView *)webView decidePolicyForNavigationAction:(WKNavigationAction *)navigationAction decisionHandler:(void (^)(WKNavigationActionPolicy))decisionHandler {
if (webView != _webView) { return; }
NSURL *url = navigationAction.request.URL;
__strong typeof(_webViewDelegate) strongDelegate = _webViewDelegate; if ([_base isWebViewJavascriptBridgeURL:url]) {
if ([_base isBridgeLoadedURL:url]) {
//iOS原生进行js交互环境注入
[_base injectJavascriptFile];
} else if ([_base isQueueMessageURL:url]) {
[self WKFlushMessageQueue];
} else {
[_base logUnkownMessage:url];
}
decisionHandler(WKNavigationActionPolicyCancel);
return;
} if (strongDelegate && [strongDelegate respondsToSelector:@selector(webView:decidePolicyForNavigationAction:decisionHandler:)]) {
[_webViewDelegate webView:webView decidePolicyForNavigationAction:navigationAction decisionHandler:decisionHandler];
} else {
decisionHandler(WKNavigationActionPolicyAllow);
}
}
另外
cd h5-demo
npm install
npm start
APP中Web容器的核心实现的更多相关文章
- 【转载】web开发中 web 容器的作用(如tomcat)
我们讲到servlet可以理解服务器端处理数据的java小程序,那么谁来负责管理servlet呢?这时候我们就要用到web容器.它帮助我们管理着servlet等,使我们只需要将重心专注于业务逻辑. 什 ...
- spring中WebApplicationContext、DispatcherServlet与web容器的ServletContext关系梳理
学习源码过程中,对各种context(上下文)表示很懵逼.特地留此一篇. 1.要了解各个上下文之间的关系.首先走一遍spring在web容器(tomcat)中的启动过程 a) ServletConte ...
- JavaEE中Web服务器、Web容器、Application服务器区别及联系
在JavaEE 开发Web中,我们经常会听到Web服务器(Web Server).Web容器(Web Container).应用服务器(Application Server),等容易混淆不好理解名词. ...
- Spring 在web 容器中的启动过程
1.对于一个web 应用,其部署在web 容器中,web 容器提供其一个全局的上下文环境,这个上下文就是 ServletContext ,其后面的spring IoC 容器提供宿主环境 2.在web. ...
- 集群: 如何在spring 任务中 获得集群中的一个web 容器的端口号?
系统是两台机器, 跑四个 web 容器, 每台机器两个容器 . nginx+memcached+quartz集群,web容器为 tomcat . web 应用中 用到spring 跑多个任务,任务只能 ...
- 用Chrome devTools 调试Android手机app中的web页面。
(1) 手机要满足Android系统为4.4或更高版本,低版本不支持这种方式.(2) 确保App已经开启了webview的debug调试模式,由Android工程师协助.(2) 用usb数据线连接好手 ...
- IOC容器在web容器中初始化——(一)两种配置方式
参考文章http://blog.csdn.net/liuganggao/article/details/44083817,http://blog.csdn.net/u013185616/article ...
- IOC容器在web容器中初始化过程——(二)深入理解Listener方式装载IOC容器方式
先来看一下ContextServletListener的代码 public class ContextLoaderListener extends ContextLoader implements S ...
- [转帖]JavaEE中Web服务器、Web容器、Application服务器区别及联系
JavaEE中Web服务器.Web容器.Application服务器区别及联系 https://www.cnblogs.com/vipyoumay/p/5853694.html 在JavaEE 开发W ...
- 如何在集群中获得处理本次请求的web容器的端口号?
系统四台机器,每台机器部署四个Tomcat Web容器.现需要根据端口号随机切换到映射的数据源,若一台机器一个Tomcat则用IP识别,可现在一台机器四个Tomcat,因此还需要获得Web容器的端口号 ...
随机推荐
- [UML]PlantUML安装使用指南
1 概述 PlantUML 支持在多个平台上安装使用,比如 Eclipse,NetBeans,oneline servlet 等,它也支持多种语言的编辑,例如 C/C++, PHP,Java ...
- [ElasticSearch]修改开源安全组件Search Guard-6 用户密码
ES有很多的安全组件可用,例如: X-pack,Sarch Guard.但目前开源免费的,仅Search Guard. 1 前置条件 Elastic Search 6 服务安装成功,且成功运行. ES ...
- 【LeetCode动态规划#06】分割等和子集(01背包问题一维写法实战)
分割等和子集 分割等和子集 给你一个 只包含正整数 的 非空 数组 nums .请你判断是否可以将这个数组分割成两个子集,使得两个子集的元素和相等. 示例 1: 输入:nums = [1,5,11,5 ...
- day128:MySQL进阶:MySQL安装&用户/权限/连接/配置管理&MySQL的体系结构&SQL&MySQL索引和执行计划
目录 1.介绍和安装 2.基础管理 2.1 用户管理 2.2 权限管理 2.3 连接管理 2.4 配置管理 3.MySQL的体系结构 4.SQL 5.索引和执行计划 1.介绍和安装 1.1 数据库分类 ...
- RDIFramework.NET开发框架用户字典助力Saas数据字典应用
1.概述 在某些特殊应用(如:SaaS)中,系统内置的字典项有可能不能完全满足用户的需求,他们需要自己定义相应的数据项,我们框架完全支持这类应用,用户字典管理主界面如下图所示. 2.功能展示 需要说明 ...
- CRC(Cyclic Redundancy Check)
CRC(循环冗余校验) [参考资料] https://en.wikipedia.org/wiki/Cyclic_redundancy_check https://wiki.segger.com/CRC ...
- 记一次python写爬虫爬取学校官网的文章
有一位老师想要把官网上有关数字化的文章全部下载下来,于是找到我,使用python来达到目的 首先先查看了文章的网址 获取了网页的源代码发现一个问题,源代码里面没有url,这里的话就需要用到抓包了,因为 ...
- 2021年蓝桥杯python真题-路径(数论+动态规划)(LCM、GCD和DP详细介绍)干货满满~
欢迎大家阅读本文章 如果大家对LCM和GCD不是很熟悉,这篇文章将对你有帮助! 本文章也会把动态规划做一定的介绍 题目: GCD和LCM的讲解: GCD的实现-辗转相除法: 在数学中,辗转相除法,又称 ...
- CopyOnWriteArrayList的使用和优缺点
CopyOnWriteArrayList允许并发读,读操作无锁,性能较高: 而写操作(含删除),比如向容器中添加/删除一个元素,则首先将当前容器复制一份,然后在新副本上执行写操作,结束之后再将原容器的 ...
- Mac 下 brew安装慢的问题
brew默认源使用的是github,可以设置环境变量达到切换源的效果,见官网: https://github.com/Homebrew/install export HOMEBREW_BREW_GIT ...