【发布时间】:2017-03-11 08:31:36
【问题描述】:
我在 WebIDE 中用 SAPUI5 编写了一个应用程序。当我将 Select items 添加到页面时,它显示并出错,但程序可以正常运行 WebIDE 中的错误是什么原因?
部分代码:
<mvc:View xmlns="sap.m" xmlns:mvc="sap.ui.core.mvc" xmlns:semantic="sap.m.semantic" xmlns:footerbar="sap.ushell.ui.footerbar" controllerName="xxx.controller.Worklist">
<semantic:FullscreenPage id="page" navButtonPress="onNavBack" showNavButton="true" title="{i18n>worklistViewTitle}">
<semantic:content>
.....
</semantic:content>
<semantic:customFooterContent>
// Here it shows error: Semantic Error: SAPUI5: The Association property is incorrect. Please enter the correct value.
<ActionSelect xmlns:sap.ui.core="sap.ui.core" selectedItem="Element sap.ui.core.ListItem#__item1" selectedKey="item1" selectedItemId="__item1" id="__select_lang">
<items>
<sap.ui.core:ListItem text="English" key="EN" id="__item1"/>
<sap.ui.core:ListItem text="German" key="DE" id="__item2"/>
</items>
</ActionSelect>
</semantic:customFooterContent>
</semantic:FullscreenPage>
</mvc:View>
错误信息是:
错误:语义错误:SAPUI5:关联属性不正确。请输入正确的值。
我在显示的代码中标记了它。
【问题讨论】:
标签: syntax-error sapui5 web-ide