2

我有如下代码。

webBrowser.IsScriptEnabled = true;
webBrowser.InvokeScript("eval", "alert('hey')");

它给An unknown error has occurred. Error: 80020006. 您能否指导如何纠正此错误。

4

2 回答 2

2

它是由竞争条件引起的。我们需要做的是

this.CordovaView.Browser.LoadCompleted += Browser_LoadCompleted;

然后

  void Browser_LoadCompleted(object sender, System.Windows.Navigation.NavigationEventArgs e)
    {
        this.CordovaView.Browser.IsScriptEnabled = true;
        this.CordovaView.CordovaBrowser.IsScriptEnabled = true;
        this.CordovaView.Browser.InvokeScript("setPushToken", push_uri);
    }
于 2013-12-03T17:48:26.363 回答
2

Windows Phone没有内置浏览器window.alert,但是可以如下绑定一个来调用WebBrowser.ScriptNotify

//inside the page
window.alert = function (__msg) { window.external.notify(' + __msg + '); };


// in your C# code
this.webBrowser.ScriptNotify += new EventHandler<NotifyEventArgs>(Browser_ScriptNotify);
void Browser_ScriptNotify(object sender, NotifyEventArgs e)
{
     MessageBox.Show(e.Value);
}

//later 
this.CordovaView.Browser.IsScriptEnabled = true;
this.CordovaView.Browser.InvokeScript("alert", "ok");

在 Cordova 上,还有一个通知插件,您可以通过

window.alert = navigator.notification.alert;

请务必在 config.xml 中启用通知插件

  <feature name="Notification">
      <param name="wp-package" value="Notification"/>
  </feature>
于 2013-07-04T11:38:46.610 回答