简体   繁体   English

如何在SAPUI5表中使用odata expand-parameter?

[英]How to use the odata expand-parameter in a SAPUI5 Table?

I want to show data from 2 odata entities that have a one to many relationship inside a SAPUI5 table. 我想显示来自SAPUI5表中具有一对多关系的2个odata实体的数据。

I have tried multiple ways of referencing in the table (eg entries/title). 我在表中尝试了多种引用方式(例如条目/标题)。 Debugging showed that the data from entries is received but not displayed in the table. 调试显示条目中的数据已收到但未显示在表中。

<Table
    items="{
        path: '/Line',
        parameters : {
        expand : 'entries'
        }
    }" >
    <columns>
        <Column />
        <Column />
    </columns>
    <items>
        <ColumnListItem>
        <Label text="{ID}" />
        <Label text="{title} 
            {shape}" />
        </ColumnListItem>
    </items>
</Table>

This is my metadata.xml 这是我的metadata.xml

<edmx:Edmx xmlns:edmx="http://schemas.microsoft.com/ado/2007/06/edmx" xmlns:sap="http://www.sap.com/Protocols/SAPData" xmlns:ux="http://www.sap.com/Protocols/OData4SAP/UX" xmlns:gp="http://www.sap.com/Protocols/SAPData/GenericPlayer" Version="1.0">
    <edmx:DataServices xmlns:m="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata" m:DataServiceVersion="2.0">
        <Schema xmlns="http://schemas.microsoft.com/ado/2008/09/edm" Namespace="TimelineService">
            <EntityType Name="Entry">
                <Key>
                    <PropertyRef Name="ID"/>
                </Key>
                <Property Name="ID" Type="Edm.Int32" Nullable="false"/>
                <Property Name="title" Type="Edm.String"/>
                <Property Name="startDate" Type="Edm.DateTimeOffset"/>
                <Property Name="shape" Type="Edm.String"/>
                <Property Name="lineID_ID" Type="Edm.Int32"/>
                <NavigationProperty Name="lineID" Relationship="TimelineService.Entry_lineID" FromRole="Entry" ToRole="Line"/>
            </EntityType>
            <EntityType Name="Line">
                <Key>
                    <PropertyRef Name="ID"/>
                </Key>
                <Property Name="ID" Type="Edm.Int32" Nullable="false"/>
                <NavigationProperty Name="entries" Relationship="TimelineService.Entry_lineID" FromRole="Line" ToRole="Entry"/>
            </EntityType>
            <Association Name="Entry_lineID">
                <End Type="TimelineService.Entry" Multiplicity="*" Role="Entry"/>
                <End Type="TimelineService.Line" Multiplicity="0..1" Role="Line"/>
                <ReferentialConstraint>
                    <Principal Role="Line">
                        <PropertyRef Name="ID"/>
                    </Principal>
                    <Dependent Role="Entry">
                        <PropertyRef Name="lineID_ID"/>
                    </Dependent>
                </ReferentialConstraint>
            </Association>
            <EntityContainer Name="EntityContainer" m:IsDefaultEntityContainer="true">
                <EntitySet Name="Entry" EntityType="TimelineService.Entry"/>
                <EntitySet Name="Line" EntityType="TimelineService.Line"/>
                <AssociationSet Name="Entry_lineID" Association="TimelineService.Entry_lineID">
                    <End EntitySet="Entry" Role="Entry"/>
                    <End EntitySet="Line" Role="Line"/>
                </AssociationSet>
            </EntityContainer>
        </Schema>
    </edmx:DataServices>
</edmx:Edmx>

Try this solution below: 试试下面的解决方案:

Open your Controller , and execute a bind element to your context controller. 打开Controller ,并执行绑定元素到上下文控制器。

this.getView().bindElement({
    path : "/Line",
    parameters : {
        "expand" : "entries"
    }
});

Now, modify your View 现在,修改您的视图

<Table items="{
    path: 'entries'
}">
<columns>
    <Column />
    <Column />
</columns>
<items>
    <ColumnListItem>
    <Label text="{ID}" />
    <Label text="{title} 
        {shape}" />
    </ColumnListItem>
</items>

Thank you. 谢谢。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM