https://github.com/guofeng007/JsBridgeHarmony
在安卓原生app上,很多经常变更的需求或者营销活动,都是通过h5网页来实现的,而且有些功能依赖安卓原生能力,比如相机、通讯录,这个时候h5是没办法的。 JsBridge通过js和原生通讯,来解决这个问题。
本项目参考 this and lzyzsd/jsbridge and wechat jsBridge file
这个项目主要是用来在 ArkTS 和网页 JavaScript之间做通信。
build()
{
BridgeWebView({
webUrl: $rawfile('demo.html'),
controller: this.controller
})
.height("100%")
}
import {JsBridge,JsCallback} from '../common/JsBridge';
JsBridge.getInstance().register("hello",(param:string,callback:JsCallback )=>{
let result = '';
if(param) {
const bridgeParam = JSON.parse(param);
if (bridgeParam.method) {
result = bridgeParam.method;
}
}
result +=' world';
callback(result);
})
function callNativeMethod() {
var param = {method:'hello',value:'world',callback:'callH5Method'};
window.jsBridge.call(JSON.stringify(param));
}
This project is licensed under the terms of the MIT license.