当尝试在 Windows Phone 上使用 PhoneGap 2.5 启动 InAppBrowser 时,如下所示:
window.open(url, '_blank', 'location=yes');
发生 NullReferenceException。
当尝试在 Windows Phone 上使用 PhoneGap 2.5 启动 InAppBrowser 时,如下所示:
window.open(url, '_blank', 'location=yes');
发生 NullReferenceException。
根据Rohit 在 Google Groups 讨论中的解决方案,解决方案是在 InAppBrowser.cs 文件中注释掉导致 NullReferenceException 的代码行,这个:
WebBrowser br = (page.FindName("CordovaView") as CordovaView).Browser;