我试图将busyindicator的构造函数中的文本值替换为变量而非硬编码。但由于某种原因,应用程序无法理解变量...
function wlCommonInit(){
var locale = "Caricamento";
var busyIndicator = new WL.BusyIndicator('content',{text:locale});
busyIndicator.show();
}
答案 0 :(得分:0)
WL.BusyIndicator's text
option期待string
,因此您不能放置变量。
相反,请使用WL.ClientMessages
。例如:
var busy;
function wlCommonInit(){
WL.ClientMessages.loading = "טוען...";
busy = new WL.BusyIndicator();
busy.show();
}
阅读材料: