在我的应用程序中,我在一个单独的sap ui5应用程序文件夹中包含了一个formatter.js文件,并在视图的控制器中声明了该文件
<Page title="{i18n>MasterTitle}" >
<List
id="list"
type="Active"
items="{/SalesOrderCollection}" >
<ObjectListItem
type="Active"
title="{SoId}">
<attributes>
<ObjectAttribute text="{ path: 'OrderedDate', formatter: 'com.corp.demo.sales.util.Formatter.date' }" />
</attributes>
<firstStatus>
<ObjectStatus text="{OverallStatus}" />
</firstStatus>
</ObjectListItem>
</List>
</Page>
但无法将显示的日期格式设置为空白。我可以使用console.log语句登录formatter.js文件,但日期函数没有被触发
如何检查日期功能是否被触发?
谢谢, 普拉萨德
答案 0 :(得分:0)
您可以在web ide中使用调试模式。 您可以使用此路径。
project settings-run configurations-web application-url components
将sap-ui-debug=true
参数添加到您的网址。
答案 1 :(得分:0)
通过在index.html中添加data-sap-ui-xx-bindingSyntax =“complex”来解决。