我正在使用OpenUI5并拥有一个整体框架XMLView和Controller,并希望根据特定条件动态显示另一个XMLView。 e.g。
<mvc:View controllerName="openui5.view.Framework" xmlns="sap.m"
xmlns:core="sap.ui.core" xmlns:mvc="sap.ui.core.mvc" >
<Page id="frameworkPage" title="{i18n>DetailTitle}" showNavButton="true"
navButtonPress="onBack">
<Button id="saveButton" text="Save" type="Accept" icon="sap-icon://save"
press="onSave" />
<Button id="nextButton" text="Next" type="Accept" icon="sap-icon://action"
press="onNext" />
<content>
<mvc:XMLView id="subView" viewName="{myViewVariable}"></mvc:XMLView>
</content>
</Page>
是否可以在运行时动态地为myViewVariable指定值?
干杯,XML
答案 0 :(得分:0)
我非常确定在XML视图中对内容规范的条件或数据绑定是不可能的。 我知道有两种可能性:
答案 1 :(得分:0)
您可以使用1.28版本执行类似的操作。此更新将介绍XML Templating。