无法检索绑定上下文

问题描述 投票:1回答:1

我需要能够从列表中的StandardListItem检索绑定上下文+路径。

但是,getBindingContext()返回undefined ......

我用oBindingContextsoSource搜索oEvent属性,它就在那里。

onJobPress: function(oEvent) {
  var oSource = oEvent.getSource();
  var oBindingContext = oSource.getBindingContext(); // undefined
  var oPath = oBindingContext.getPath(); // error
  var data = oBindingContext.getProperty(oPath); // error
  // ...
},
sapui5
1个回答
0
投票

你使用过命名模型吗?然后它会是:

oSource.getBindingContext("modelName");
© www.soinside.com 2019 - 2024. All rights reserved.