我需要在新的浏览器窗口中打开所有链接,而不是在应用程序中打开。这特别是知道,但它发生我占据谷歌地图,它有“条款和条件”的链接,然后点击,打开离子我的应用程序,不能通过它。任何人都知道是否有指令或服务这样做?
我正在使用离子框架。
答案 0 :(得分:0)
我假设您正在寻找本教程。它将停止所有标记并在InAppBrowser中打开这些链接。
window.open(‘http://example.com’, ‘_system’); Loads in the system browser
window.open(‘http://example.com’, ‘_blank’); Loads in the InAppBrowser
window.open(‘http://example.com’, ‘_blank’, ‘location=no’); Loads in the InAppBrowser with no location bar
window.open(‘http://example.com’, ‘_self’); Loads in the Cordova web view
教程Here