我正在尝试使用项目源文件夹中的图像填充SAPUI5中的CustomListItem单元格,但它没有显示在单元格上。它直接放在WebContent文件夹中:App / WebContent / TEST.jpg,以及视图代码:
<Page title="View" showNavButton="true" navButtonPress="onBack">
<content>
<CustomListItem type="Inactive">
<Image src="{TEST.jpg}" class="content" />
<Button text="Press me!" class="content" />
</CustomListItem>
</content>
</Page>
按钮显示在列表的第一个单元格中(图像应该在哪里),但不是图像,是否有人知道如何修复它?
答案 0 :(得分:1)
您需要更改src属性中的url路径。如果将其括在括号({})中,SAPUI5需要一个属性绑定路径,在这种情况下,该路径无效。
所以替换它,
<Image src="{TEST.jpg}"
与
<Image src="TEST.jpg"