我正在开发Ionic应用程序,并且正在使用ThemeableBrowser。
虽然ThemeableBrowser处于活动状态,但我希望在更改URL时有一个加载屏幕。我需要一个加载屏幕,直到完成加载为止,在执行脚本功能中,我可以运行JavaScript代码:
Browser.executeScript({code: " window.location.href = google.com ;" });
我搜索类似的东西
Browser.executeScript({code:“
(loading screen start)
window.location.href = google.com;(loading screen stop)
“});