gpt4 book ai didi

ios - 在 UIWebview iOS 中从 javascript 调用 c# 方法的最简单方法是什么?

转载 作者:塔克拉玛干 更新时间:2023-11-02 09:36:14 24 4
gpt4 key购买 nike

我正在使用 Xamarin 开发 iOS 应用程序。我有一个要求从 UIWebView 中的 JavaScript 调用 c# 方法。我们如何才能做到这一点?

以下是加载到UIWebView中的html内容

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 内容时,我在警报消息中得到 about://(null)(在 body 标签上指定用于显示警报的 onload)。

最佳答案

从 WebView 组件中显示的网站触发 C# 方法的一种解决方案是:

1) 在您的网络代码中初始化一个网站导航,例如

http://scancode/providedBarCode

2) 然后你可以覆盖在导航实际发生之前调用的 webview 方法。您可以在那里拦截带有参数的调用并忽略实际导航

Xamarin Forms(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(ShouldStartLoad UIWebView 方法)

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;
}

关于ios - 在 UIWebview iOS 中从 javascript 调用 c# 方法的最简单方法是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49732217/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com