<span style="font-family: Arial, Helvetica, sans-serif; background-color: rgb(255, 255, 255);">··<span style="white-space:pre"> </span>在SAP UI5中,使用i18n文件的方式来解析变量。对于以后开发不同的语言包,也有对应不同的i18n文件。我们先来大体看一下在SAPUI5中,i18n是如何使用的。</span>
首先我们建立一个文件,文件名为i18n.properties。在其中编写如下内容:
showHelloButtonText=Say Hello
helloMsg=Hello {0}
这里其实定义了几个变量或者方法的值。要调用他们,我们首先修改controller内容如下:
sap.ui.define([
"sap/ui/core/mvc/Controller",
"sap/m/MessageToast",