IBM Worklight - BusyIndi​​cator文本值不能用变量替换?

时间:2014-04-15 06:56:36

标签: ibm-mobilefirst worklight-runtime

我试图将busyindicator的构造函数中的文本值替换为变量而非硬编码。但由于某种原因,应用程序无法理解变量...

function wlCommonInit(){
    var locale = "Caricamento";
    var busyIndicator = new WL.BusyIndicator('content',{text:locale}); 
    busyIndicator.show();
}

1 个答案:

答案 0 :(得分:0)

WL.BusyIndicator's text option期待string,因此您不能放置变量。

相反,请使用WL.ClientMessages。例如:

var busy;

function wlCommonInit(){
    WL.ClientMessages.loading = "טוען...";
    busy = new WL.BusyIndicator();
    busy.show();
}


阅读材料: