菜鸟教程小白 发表于 2022-12-13 15:56:30

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


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

<p>以下是正在加载到 UIWebView 中的 html 内容</p>

<pre><code>const string html = @&#34;
                  &lt;html&gt;
                      &lt;body onload=&#34;&#34;setBarcodeInTextField()&#34;&#34;&gt;
                        &lt;p&gt;Demo calling C# from JavaScript&lt;/p&gt;
                        &lt;button type=&#34;&#34;button&#34;&#34;
                              onClick=&#34;&#34;CSharp.ScanBarcode(&#39;txtBarcode&#39;, &#39;setBarcodeInTextField&#39;)&#34;&#34;&gt;Scan Barcode
                        &lt;/button&gt;
                        &lt;input type=&#34;&#34;text&#34;&#34; value=&#34;&#34;&#34;&#34; id=&#34;&#34;txtBarcode&#34;&#34;/&gt;

                        &lt;script type=&#34;&#34;text/javascript&#34;&#34;&gt;



                        function setBarcodeInTextField() {

                            alert(&#34;&#34;JS&#34;&#34;);
                        }

                        &lt;/script&gt;

                      &lt;/body&gt;
                  &lt;/html&gt;&#34;;
</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) =&gt;
{
    if (e.Url.StartsWith(&#34;http://scancode/&#34;))
    {
      var parameter = e.Url.Split(new[] { &#34;scancode/&#34; }, 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) =&gt;
{
    var path = request.Url.AbsoluteString;
    if (path.StartsWith(&#34;http://scancode/&#34;))
    {
      var parameter = path.Split(new[] { &#34;scancode/&#34; }, 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]
查看完整版本: ios - 在 UIWebview iOS 中从 javascript 调用 c# 方法的最简单方法是什么?