使用XML视图使用sap.m.Table中的数据绑定进行数据绑定

时间:2018-04-19 19:16:23

标签: sapui5

由于我是SAPUI5的新手,在对sap.m.Table执行项目聚合时遇到问题。我在对sap.m.Table的项目进行聚合绑定时没有获取输出数据,请帮帮我如果我做错了什么。

提前致谢!

index.html

我的XML视图:

<Page title="Title">
    <content>
        <Table id="id1"
            items="{
            path:'/'
          }">
            <columns>
                <Column>
                    <header>
                        <Label text="Name"/>
                    </header>
                </Column>
                <Column>
                    <header>
                        <Label text="Color"/>
                    </header>
                </Column>
                <Column>
                    <header>
                        <Label text="Price"/>
                    </header>
                </Column>
            </columns>
            <items>
                <ColumnListItem>
                    <cells>
                        <Text text="{/Name}" />
                    </cells>
                    <cells>
                        <Text text="{/color}" />
                    </cells>
                    <cells>
                        <Text text="{/price}" />
                    </cells>
                </ColumnListItem>
            </items>
        </Table>
    </content>
</Page>

My Model

1 个答案:

答案 0 :(得分:1)

删除&#34; /&#34;来自你的绑定语法。

<IfModule mod_rewrite.c>
    <IfModule mod_negotiation.c>
        Options -MultiViews
    </IfModule>

    RewriteEngine On
    RewriteBase /

    # Redirect Trailing Slashes...
    RewriteRule ^(.*)/$ /$1 [L,R=301]

    # Handle Front Controller...
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteRule ^ index.php [L]
</IfModule>

路径设置集合根目录。 从这里你只需要指定字段名称(或者如果是命名模型,那么是模型名称,然后是字段名称)。

在下面运行代码段(您可能需要点击整页链接才能看到结果。我的信息消息会让我感到茫然?!)

&#13;
&#13;
<Text text="{Name}" />
...
<Text text="{color}" />
...
<Text text="{price}" />
&#13;
&#13;
&#13;