在VS2013中開發OpenUi5項目時,我遇到了國際化問題。該i18n.properties不能得到:i18n.properties未找到OpenUI5
「GET http://localhost:28091/i18n/i18n.properties 404(未找到)SAP-UI-core.js:126」
這裏是我的項目設置:
./國際化/ i18n.properties
showHello=Hello
./internationization/Main.controller.js
onInit: function() {
var oResourceModel = new sap.ui.model.resource.ResourceModel({
bundleName : "i18n.i18n"
});
sap.ui.getCore().setModel(oResourceModel, "i18n");
},
./internationization/Main.view.xml
<core:View
xmlns:core="sap.ui.core"
xmlns:mvc="sap.ui.core.mvc"
xmlns="sap.m"
controllerName="internationization.Main"
xmlns:html="http://www.w3.org/1999/xhtml">
<Page title="Title">
<content>
<Button text="{i18n>showHello}"/>
</content>
</Page>
</core:View>
非常感謝你爲您的幫助提前。
它工作!!!!!!非常感謝你的幫助,你爲我節省了很多時間! @schnoedel – angwong