gpt4 book ai didi

javascript - SAPUI5 绑定(bind)模型从核心到列表

转载 作者:行者123 更新时间:2023-11-30 17:23:19 25 4
gpt4 key购买 nike

我的应用程序中有 2 个模型绑定(bind)到 sap.ui.core。以下代码来 self 的主要观点。这是一个拆分应用程序。

var checks = {
items: [
{
checklist: "ContainerCheck",
title:"Scan RFID container",
}
// etc...
]}
;

var oModel = new sap.ui.model.json.JSONModel();
oModel.setData(checks);
sap.ui.getCore().setModel(oModel, "checks");

在另一个 View 中我想将数据绑定(bind)到母版页

var oItemTemplate = new sap.m.ActionListItem({
title : "{title}",
icon : "sap-icon://activity-2",
activeIcon: "sap-icon://activity-2",
type : sap.m.ListType.Active,
});

this.oList = new sap.m.List({
itemPress: [oController.onListSelect, oController]
});

this.oList.bindItems("checks>/items",oItemTemplate);

但是我没有在列表中看到任何数据。我很确定 sPath 是正确的 checks>/items。是否无法使用此 sPath,因为该模型已绑定(bind)到 sap.ui.core。还是我错过了其他东西?

最佳答案

我很确定您必须在 propertyBinding 前面加上模型名称:

var oItemTemplate = new sap.m.ActionListItem({
title : "{checks>title}",
...
});

这应该有效。

关于javascript - SAPUI5 绑定(bind)模型从核心到列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24740529/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com