0

当尝试在 Windows Phone 上使用 PhoneGap 2.5 启动 InAppBrowser 时,如下所示:

window.open(url, '_blank', 'location=yes');

发生 NullReferenceException。

4

1 回答 1

1

根据Rohit 在 Google Groups 讨论中的解决方案,解决方案是在 InAppBrowser.cs 文件中注释掉导致 NullReferenceException 的代码行,这个:

WebBrowser br = (page.FindName("CordovaView") as CordovaView).Browser;
于 2013-04-09T16:09:27.600 回答