gpt4 book ai didi

android - IBM Worklight 6.0 - 无法更改默认的 WL.BusyIndi​​cator 文本

转载 作者:行者123 更新时间:2023-11-28 20:14:44 25 4
gpt4 key购买 nike

我已经像下面的代码一样测试了 WL.BusyIndi​​cator:

    busyIndicator = new WL.BusyIndicator('content', {
text : 'saving'
});
busyIndicator.show();
setTimeout(function() {
busyIndicator.hide();
}, 3000);

信息中心说 BusyIndicator options can get 'text' in Android environment .

我可以在我的 Android 模拟器 (v4.0.4/v4.1.2/v4.2.2) 上看到 BusyIndi​​cator,但文本默认为“正在加载”...

注意:同样的情况也发生在 iOS 中。

我的 Worklight Studio 版本是:6.0.0.201307241843

最佳答案

试试下面的代码:

function wlCommonInit(){

WL.ClientMessages.loading = "Hello world :)";

var busyInd = new WL.BusyIndicator('content');
busyInd.show();

setTimeout(function () {
busyInd.hide();
}, 3000);
}

请注意,我正在使用 WL.ClientMessages.loading 来设置消息,而不是将带有 text 键的对象传递给构造函数。

我必须查看 Busy Indicator 代码才能找出问题所在,我将打开一个缺陷。感谢您报告此事。

关于android - IBM Worklight 6.0 - 无法更改默认的 WL.BusyIndi​​cator 文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18501456/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com