0

我试图用一个变量代替busyindicator的构造函数中的文本值,而不是硬编码它。但由于某种原因,应用程序无法理解变量......

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

1 回答 1

0

WL.BusyIndi​​cator 的text选项期望 a string,因此您可能不会放置变量。

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

var busy;

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


阅读材料:

于 2014-04-15T07:17:55.260 回答