由于我是SAPUI5的新手,在对sap.m.Table执行项目聚合时遇到问题。我在对sap.m.Table的项目进行聚合绑定时没有获取输出数据,请帮帮我如果我做错了什么。
提前致谢!
我的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>
答案 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>
路径设置集合根目录。 从这里你只需要指定字段名称(或者如果是命名模型,那么是模型名称,然后是字段名称)。
在下面运行代码段(您可能需要点击整页链接才能看到结果。我的信息消息会让我感到茫然?!)
<Text text="{Name}" />
...
<Text text="{color}" />
...
<Text text="{price}" />
&#13;