2

我正在使用 IBM Worklight 开发一个项目,每当我在任何模拟器或设备上构建和部署我的项目时,屏幕中间都会出现这个忙碌的指示器微调器。它始终存在,在每个页面上,它存在于 ios、windows、web 和 android 模拟器以及我们测试过的一个 android 设备上。有没有人见过这个,如果是这样,我将如何摆脱它。

4

2 回答 2

1

Jquery-mobile 是问题所在,它似乎没有充分的理由持续显示指标。删除 Jquery mobile 解决了问题

于 2014-06-05T20:24:49.877 回答
0

I already used the native worklight loading.It is very good and I tested it on different platforms, devices. But it is necessary to close it when you leave the function that opened it.

Example:

var busyInd = new WL.BusyIndicator ("content", {text: "Please wait..."});

function consult(){
busyInd.show();
//impl 
busyInd.hide();
}
于 2015-01-21T14:01:45.313 回答