ios - 在 UIWebview iOS 中从 javascript 调用 c# 方法的最简单方法是什么?
<p><p>我正在使用 Xamarin 开发 iOS 应用程序。我有一个
从 UIWebView 中的 JavaScript 调用 c# 方法的要求。我们怎样才能做到这一点?</p>
<p>以下是正在加载到 UIWebView 中的 html 内容</p>
<pre><code>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>";
</code></pre>
<p>另外,当 UIWebView 加载 html 内容时,我在警报消息中收到 about://(null)(在 body 标记上指定用于显示警报的 onload)。</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>从 WebView 组件中显示的网站触发 C# 方法的一种解决方案是:</p>
<p>1) 在你的网页代码中初始化一个网站导航,例如</p>
<p><code>http://scancode/providedBarCode</code></p>
<p>2) 然后您可以覆盖在导航实际发生之前调用的 webview 方法。您可以在那里拦截带有参数的调用并忽略实际导航</p>
<p><strong>Xamarin 表单</strong>(<a href="https://developer.xamarin.com/api/event/Xamarin.Forms.WebView.Navigating/" rel="noreferrer noopener nofollow">Navigating</a> WebView 方法)</p>
<pre><code>webview.Navigating += (s, e) =>
{
if (e.Url.StartsWith("http://scancode/"))
{
var parameter = e.Url.Split(new[] { "scancode/" }, StringSplitOptions.None);
// parameter will be providedBarCode
// perform your logic here
// cancel the actual navigation
e.Cancel = true;
}
};
</code></pre>
<p><strong>Xamarin iOS</strong>(UIWebView 的 <a href="https://developer.xamarin.com/api/member/MonoTouch.UIKit.UIWebViewDelegate.ShouldStartLoad/" rel="noreferrer noopener nofollow">ShouldStartLoad</a> 方法)</p>
<pre><code>webViewControl.ShouldStartLoad = (webView, request, navType) =>
{
var path = request.Url.AbsoluteString;
if (path.StartsWith("http://scancode/"))
{
var parameter = path.Split(new[] { "scancode/" }, StringSplitOptions.None);
// parameter will be providedBarCode
// perform your logic here
// cancel the actual navigation
return false;
}
return true;
}
</code></pre></p>
<p style="font-size: 20px;">关于ios - 在 UIWebview iOS 中从 javascript 调用 c# 方法的最简单方法是什么?,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/49732217/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/49732217/
</a>
</p>
页:
[1]