Fiori $扩展了CRM数据

时间:2018-03-14 16:16:54

标签: sap-fiori

我在sapui5 fiori应用程序中遇到某种基本的导航问题。我只是想从机会导航到复杂笔记,但它根本不起作用。这是我简单视图的精简版。任何控制器都没有逻辑。就像我能想象的那样简单。因为它太简单了我以为我读错了odata。所以here是该odata的链接。我真的很感激,我正在旋转我的轮子,我确信这是荒谬的。永远是。

<mvc:View xmlns:html="http://www.w3.org/1999/xhtml" xmlns:mvc="sap.ui.core.mvc" xmlns="sap.m"
controllerName="BlankDocumentToBeDeletedLater.controller.View1" displayBlock="true">
<App>
<pages>
<Page title="{i18n>title}">
<content>
<List noDataText="Drop list items here" id="__list0" items="{ path : '/Opportunities', parameters:{'$expand' : 'ComplexNotes'}}">
    <items>
    <CustomListItem>
    <content>
    <Title text="ID : {Guid}"></Title>
        <List items="{ComplexNotes}">
        <items>
        <ObjectListItem title="whatevs" intro="{HeaderGuid}">
        </ObjectListItem>
    </items>
    </List>
    </content>
    </CustomListItem>
    </items>
</List>
</content>
</Page>
</pages>
</App>

1 个答案:

答案 0 :(得分:1)

仅在OData V4上需要

扩展“$”; “/机会”进入“listitems”的路径; text =“ID:{Guid}”不起作用,需要格式化程序将固定文本加入Guid属性; 我从未在列表中看到过列表 - 开发人员应首先尝试使用父列表。 在chrome网络中检查UI5绑定创建的请求和响应。