我正在开发Ionic应用程序,并且正在使用ThemeableBrowser。
虽然ThemeableBrowser处于活动状态,但我希望在更改URL时有一个加载屏幕。我需要一个加载屏幕,直到用我的Browser.executeScript()方法完成加载为止,并且在executeScript方法中,我可以将JavaScript代码注入浏览器:
这是我目前所拥有的:
Browser.show(url);//opens themeable browser with url given
Browser.executeScript({code: " window.location.href = google.com ;"}); //changes the url
我搜索类似的东西
Browser.show(url);//opens themeable browser with url given
Browser.startloading(); //should start loading until execute script is done
Browser.executeScript({code: " window.location.href = google.com ;"}); //changes the url
Browser.stoploading(); //should stop loading when execute script is done and the url changed
如果您知道如何在ThemeableBrowser中显示加载屏幕,将会很有帮助!