We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b4520b7 commit b6f1b49Copy full SHA for b6f1b49
README.md
@@ -80,6 +80,7 @@ function setupWebViewJavascriptBridge(callback) {
80
window.WVJBCallbacks = [callback];
81
var WVJBIframe = document.createElement('iframe');
82
WVJBIframe.style.display = 'none';
83
+ //这里最新IOS版是 https的scheme,真实环境下 需要判断iOS和Android,做下区分。
84
WVJBIframe.src = 'wvjbscheme://__BRIDGE_LOADED__';
85
document.documentElement.appendChild(WVJBIframe);
86
setTimeout(function() {
0 commit comments