我在我的項目中使用了i18n文件。我需要大膽地處理屬性「missingItems」的佔位符中的文本。這是酒店需要從國際化:如何在SAPUI5中以粗體顯示佔位符文本
missingItems = The items: {0} are missing!
控制器:
var missingItemsArray= ["item1", "item2", "item3"]
var sMessage = this.getView().getModel("i18n").getResourceBundle().getText("missingItems", [missingItemsArray]);
MessageBox.show(sMessage, {
icon: MessageBox.Icon.WARNING,
title: "exampleTitle",
actions: [sap.m.MessageBox.Action.OK],
id: "messageBoxId2",
defaultAction: sap.m.MessageBox.Action.OK,
details: "exampleDetails"
});
任何幫助將不勝感激! :)
謝謝巴勃羅! –