我需要能够从列表中的StandardListItem检索绑定上下文+路径。
但是,getBindingContext()
返回undefined ......
我用oBindingContexts
的oSource
搜索oEvent
属性,它就在那里。
onJobPress: function(oEvent) {
var oSource = oEvent.getSource();
var oBindingContext = oSource.getBindingContext(); // undefined
var oPath = oBindingContext.getPath(); // error
var data = oBindingContext.getProperty(oPath); // error
// ...
},
你使用过命名模型吗?然后它会是:
oSource.getBindingContext("modelName");