如何在加载应用程序内浏览器页面时显示加载程序? 我尝试使用这种方法:
ref.addEventListener('loadstart', function(event) {
ionicLoaderService.show();
})
但是加载器放在浏览器后面。
答案 0 :(得分:0)
我使用这种方法。这不是我想要的100%,但看起来很好。 它将首先显示加载弹出窗口,并将等到页面加载完全然后将显示浏览器。
ref.addEventListener('loadstart', function(event) {
ionicLoaderService.show();
});
ref.addEventListener('exit', function(event) {
ionicLoaderService.hide();
});
ref.addEventListener('loadstop', function(event) {
ref.show();
if (event.url.match("result")) {
accountCreditService.updateLocalBalance()
ref.close();
}
});