We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
您好,在调用webview.goBack()方法回到上一页时,setupWebViewJavascriptBridge传入的回调function不会被执行,检查了一下Native代码好像是调用goBack时不会执行shouldInterceptRequest方法,不会执行这段逻辑 if (url.indexOf(WVJBConstants.BRIDGE_LOADED) > 0) { mWVJBWebView.injectJavascriptFile(); } else if (url.indexOf(WVJBConstants.MESSAGE) > 0) { mWVJBWebView.flushMessageQueue(); } else { Logger.d("UnkownMessage:" + url); } return true; 请问有什么解决的方案吗,谢谢
The text was updated successfully, but these errors were encountered:
相同的问题,求解
Sorry, something went wrong.
我也遇到同样的问题
这个问题可以解决吗?有解决办法吗?
No branches or pull requests
您好,在调用webview.goBack()方法回到上一页时,setupWebViewJavascriptBridge传入的回调function不会被执行,检查了一下Native代码好像是调用goBack时不会执行shouldInterceptRequest方法,不会执行这段逻辑
if (url.indexOf(WVJBConstants.BRIDGE_LOADED) > 0) {
mWVJBWebView.injectJavascriptFile();
} else if (url.indexOf(WVJBConstants.MESSAGE) > 0) {
mWVJBWebView.flushMessageQueue();
} else {
Logger.d("UnkownMessage:" + url);
}
return true;
请问有什么解决的方案吗,谢谢
The text was updated successfully, but these errors were encountered: