我正在使用Xamarin开发iOS应用程序。我有一个 要求从UIWebView中的JavaScript调用c#方法。我们怎么能实现这个目标呢?
以下是html内容加载到UIWebView
const string html = @"
<html>
<body onload=""setBarcodeInTextField()"">
<p>Demo calling C# from JavaScript</p>
<button type=""button""
onClick=""CSharp.ScanBarcode('txtBarcode', 'setBarcodeInTextField')"">Scan Barcode
</button>
<input type=""text"" value="""" id=""txtBarcode""/>
<script type=""text/javascript"">
function setBarcodeInTextField() {
alert(""JS"");
}
</script>
</body>
</html>";
此外,当UIWebView加载html内容时,我在警告消息中显示://(null)(在body标签上指定用于显示警报的onload)。
答案 0 :(得分:4)
从WebView组件中显示的网站触发C#方法的一个解决方案是:
1)在网页代码中初始化网站导航,例如
http://scancode/providedBarCode
2)然后你可以覆盖在导航实际发生之前调用的webview方法。您可以使用参数拦截那里的呼叫并忽略实际导航
Xamarin表单(WebView的Navigating方法)
webview.Navigating += (s, e) =>
{
if (e.Url.StartsWith("http://scancode/"))
{
var parameter = e.Url.Split(new[] { "scancode/" }, StringSplitOptions.None)[1];
// parameter will be providedBarCode
// perform your logic here
// cancel the actual navigation
e.Cancel = true;
}
};
Xamarin iOS (UIWebView的ShouldStartLoad方法)
webViewControl.ShouldStartLoad = (webView, request, navType) =>
{
var path = request.Url.AbsoluteString;
if (path.StartsWith("http://scancode/"))
{
var parameter = path.Split(new[] { "scancode/" }, StringSplitOptions.None)[1];
// parameter will be providedBarCode
// perform your logic here
// cancel the actual navigation
return false;
}
return true;
}