我正在致力於splitapp
。SAP UI5 - getBindingContext()undefined(splitapp)
在從列表中選擇一個項目,它說
Uncaught TypeError: Cannot read property 'getPath' of undefined
Master.controller.js
onSelect : function(oEvent) {
this.showDetail(oEvent.getParameter("listItem") || oEvent.getSource());
},
showDetail : function(oItem) {
var bReplace = jQuery.device.is.phone ? false : true;
this.getRouter().navTo("detail", {
from: "master",
entity: oItem.getBindingContext().getPath().substr(1),
tab: this.sTab
}, bReplace);
}
我綁定一個JSON Model
到列表中。
oItem.getBindingContext()
未定義。 所以我相信問題是綁定上下文。
在Master.view.xml列表的代碼如下
<content>
<List
id="list"
select="onSelect"
mode="SingleSelect"
noDataText="{i18n>masterListNoDataText}"
growing="true"
growingScrollToLoad="true"
items="{data>/results}">
<items
id="masterList">
<ObjectListItem
id="listItem"
press="onSelect"
type="{device>/listItemType}"
counter="0"
title="{data>PROJECTNAME}"
number="{data>REVENUE}"
numberUnit="{data>CURRENCY}"
markFavorite="false"
markFlagged="false"
showMarkers="true">
</ObjectListItem>
</items>
</List>
</content>
我在Component.js設置如下模型:
var oModel= new sap.ui.model.json.JSONModel();
oModel.loadData("Data.json");
this.setModel(oModel,"data");
名單顯示,但是當我選擇該項目錯誤拋出。
它工作正常。 :) – FEBzX
@FEBzX,很高興幫助你:) – Rayon