我的 JSON 数据结构如下:
0: Object
Folder: Object
NodeId: Object
NodeLevel: Object
Nodetype: Object
NodeText: Object
...
如果我再次展开这些节点,它会包含#text: data。
0: Object
Folder: Object
NodeId: Object
NodeLevel: Object
#text: "07"
Nodetype: Object
NodeText: Object
#text: "[Exploratory] Translation of the document in the RIA"
...
我想在 SAPUI5 的表上显示这些数据。这是我的代码:
var oCol;
oCol = new sap.ui.table.Column({
label: new sap.ui.commons.Label({text: "Test Plan"}),
template: new sap.ui.commons.TextView().bindProperty("text", "#text"),
width: "450px",
resizable : false
});
oTable.addColumn(oCol);
我像这样绑定数据:
var oModel = new sap.ui.model.json.JSONModel();
oModel.setData(myGTP);
oTable.setModel(oModel);
oTable.bindRows("/NodeText");
在这种情况下,我想查看 NodeText 节点下的文本。但我无法获得我想要的数据。有任何想法吗?