上次我们介绍了属性绑定。属性绑定用于绑定单条数据。如果需要绑定多条数据,则需要使用聚合绑定(aggregation binding),比如我们常见的ListBox, Combox或者表格,都是含有多条数据的。概念比较容易理解,关键是绑定的语法。如果所有行都用同样的方法显示数据,用template方法。什么是template方法呢?就是各行的数据显示方式应该是固定的,像套用模板一样。比如显示供应商信息,每一行的第一列是供应商ID,第二列是供应商名称,都是固定的。熟悉ABAP的语言的读者,可以根据ABAP内表的line type来理解。
我们在前面用sap.ui.table.Table
显示供应商数据的时候,已经有相应的例子,请参考:SAPUI5 (08) - MVC的Model和数据绑定。 Template方式绑定有以下几种方式:
- 使用settings设置
- 使用
sap.ui.base.ManagedObject
的bindAggregation()
方法 - 使用控件的类型化绑定方法
这三种方法本篇都会介绍。如果想各行绑定的数据有变化,或者说是动态的。比如在一个表格中,有一列显示读者对某文章的点击次数,当点击次数超过100时,除了点击次数,还显示热门标记,则可以使用factory function的方式来绑定。后面也会给出示例。
本次使用sap.m.Table
控件显示数据,所以先介绍下sap.m.Table
的一些语法要点。
sap.m.Table
sap.m.Table
control provides a set of sophisticated and convenience functions for responsive table design. To render the sap.m.Table properly, the order of the columns aggregation should match with the order of the items cells aggregation. Also sap.m.Table requires at least one visible sap.m.Column in columnsaggregation. For mobile devices, the recommended limit of table rows is 100 (based on 4 columns) to assure proper performance. To improve initial rendering on large tables, use the growing feature.
查看
sap.m.Table
从sap.m.ListBase
类继承,用于显示包含行和列的表格式数据。表格的列可以通过columns
聚合属性来设置,也可以使用addColumn()
方法来添加。每一列都是sap.m.Column
对象。至少包含一个可见列。在一定设备上不要加载太多行,以免影响性能。
sap.m.Table
的重要属性:
-
columns
: 定义Table包含哪些列,类型是sap.m.Column
数组。
另外,sap.m.Table
从sap.m.ListBase
继承,所以可以直接使用sap.m.ListBase
的属性:
-
growing
: 设置Table显示的数据可以依据向model的请求增加行 -
noDataText
: 当Table没有数据的时候显示的文本,类型是string -
items
:sap.m.ListItemBase
数组,sap.m.ListItemBase类定义了列表项(list item)的基本特征。
sap.m.ColumnListItem
使用template方法显示数据,每一行的template常用sap.m.ColumnListItem
,所以接下来介绍sap.m.ColumnListItem
的知识点:
sap.m.ColumnListItem
can be used with the cells aggregation to create rows for thesap.m.Table
control. The columns aggregation of thesap.m.Table
should match with the cells aggregation.
查看
sap.m.ColumnListItem
用于创建sap.m.Table
的行,行中包含的cells需要与sap.m.Table
的Columns匹配,顺序一致。
本次将用到以下属性:
-
vAlign
, 行的垂直对齐:- sap.ui.core.VerticalAlign.Bottom,底部对齐
- sap.ui.core.VerticalAlign.Inherit,从父控件继承
- [sap.ui.core.VerticalAlign.Middle, 居中对齐
- sap.ui.core.VerticalAlign.Top,顶部对齐
cells
: 行包含的cells,每一个cell都是sap.ui.core.Control
对象,从而开发人员可以根据需要选择合适的控件,灵活度很高。
聚合绑定示例
和之前一样,通过例子来加强理解。今天要实现的业务场景是在页面中显示一个文章列表,这些文章的阅读次数,我们的要显示的界面如下:
为了便于理解,先给出application area的完整代码:
/**
* Aggregation binding
* Demo written by Stone Wang
*/
// application data
var oAppData = [
{ articleName: "SAP成本计算流程", type: "Locked", hits: 1048 },
{ articleName: "SAP物料价格修改", type: "Draft", hits: 58 },
{ articleName: "2017年SAP技术趋势", type: "Unsaved", hits: 320},
{ articleName: "《人类简史》读后感", type: "Flagged", hits: 90 },
{ articleName: "《Core Java》第十版出版", type: "Favorite" , hits: 66}
];
var oModel = new sap.ui.model.json.JSONModel();
oModel.setData({ modelData: oAppData });
sap.ui.getCore().setModel(oModel);
// 定义一个包含包含3列的数组
var aColumns = [
new sap.m.Column({
header : new sap.m.Label({text : "文章"})
}),
new sap.m.Column({
header : new sap.m.Label({text : "标记"})
}),
new sap.m.Column({
header : new sap.m.Label({text : "标记"})
})
]
// 定义template, 每行包含3个cell
var oColumnListItem = new sap.m.ColumnListItem({
vAlign: "Middle",
cells: [
new sap.m.Text({text: "{articleName}"}),
new sap.m.ObjectMarker({type: "{type}"}),
new sap.m.ObjectMarker({
type: "{type}",
active: true,
press: function(oEvent){
sap.m.MessageToast.show(oEvent.getParameter("type") + " pressed");
}
})
]
});
// Table control
var oTable = new sap.m.Table({
columns : aColumns,
items: {path: "/modelData", template: oColumnListItem}
});
var oTablePanel = new sap.m.Panel({
headerText: "文章列表",
content: oTable
});
var oStandalonePanel = new sap.m.Panel("standalone-panel", {
headerText: "图例:",
content: [
new sap.m.ObjectMarker({type: sap.m.ObjectMarkerType.Locked}),
new sap.m.ObjectMarker({type: sap.m.ObjectMarkerType.Flagged}),
new sap.m.ObjectMarker({type: sap.m.ObjectMarkerType.Favorite}),
new sap.m.ObjectMarker({type: sap.m.ObjectMarkerType.Draft}),
new sap.m.ObjectMarker({type: sap.m.ObjectMarkerType.Unsaved})
]
});
var oApp = new sap.m.App({ initialPage: "page" });
var oPage = new sap.m.Page("page", {
title:"Aggregation binding demo",
content: [oTablePanel, oStandalonePanel]
});
oApp.addPage(oPage).placeAt("content");
我们说明最主要的部分。因为Table包含三列,所以我们先定义一个包含3列的数组,每一列都是sap.m.Column
对象。
// 定义一个包含包含3列的数组
var aColumns = [
new sap.m.Column({
header : new sap.m.Label({text : "文章"})
}),
new sap.m.Column({
header : new sap.m.Label({text : "标记"})
}),
new sap.m.Column({
header : new sap.m.Label({text : "标记"})
})
]
刚才说过,对于每一行来说,都是一个template,我们使用ColumnListItem来代表template,每一行包含三个单元格,使用cells属性表示。每一个cell都是Control对象,我们使用sap.m.Text
显示第一个单元格,绑定到articleName,使用sap.m.ObjectMarker
显示第二个单元格和第三个单元格,第三个单元格与event handler绑定:
// 定义template, 每行包含3个cell
var oColumnListItem = new sap.m.ColumnListItem({
vAlign: "Middle",
cells: [
new sap.m.Text({text: "{articleName}"}),
new sap.m.ObjectMarker({type: "{type}"}),
new sap.m.ObjectMarker({
type: "{type}",
active: true,
press: function(oEvent){
sap.m.MessageToast.show(oEvent.getParameter("type") + " pressed");
}
})
]
});
最后定义sap.m.Table
对象,使用columns
聚合属性和items
聚合属性,items属性实现的就是聚合绑定,当然,需要ColumnListItem
的支持。
// Table control
var oTable = new sap.m.Table({
columns : aColumns,
items: {path: "/modelData", template: oColumnListItem}
});
对Table的绑定,我们也可以使用bingItems方法来实现:
var oTable = new sap.m.Table({
columns: aColumns
});
oTable.bindItems("/modelData", oColumnListItem);
或者:
var oTable = new sap.m.Table({
columns: aColumns
});
oTable.bindAggregation("items", "/modelData", oColumnListItem);
使用工厂函数实现聚合绑定
对上面的例子进行重构,假设我们想显示这些文章的阅读次数,并且当阅读次数超过100时,就在阅读次数下面加一个”热门”字眼来标识。也就是不同的单元格在显示的时候是动态的。对这种动态的数据显示,就需要用factory function。如何做呢?我们使用sap.m.Table
的bindAggregation()
方法,参数3使用匿名函数,这个函数就是factory function:
// 使用Factory function实现动态的数据显示
oTable.bindAggregation("items", "/modelData", function(sId, oContext){
var oColumnListItem = new sap.m.ColumnListItem(sId, {vAlign: "Middle"});
oColumnListItem.addCell(new sap.m.Text({text: "{articleName}"}));
oColumnListItem.addCell(new sap.m.ObjectMarker({type: "{type}"}));
var oHits = oContext.getProperty("hits");
if (oHits >= 100) {
oColumnListItem.addCell(
new sap.ui.layout.VerticalLayout({
content: [
new sap.m.Text({text: "{hits}"}),
new sap.m.ObjectStatus({text:"热门", state:"Success"})
]
})
)
} else {
oColumnListItem.addCell(
new sap.m.Text({text: "{hits}"})
)
}
return oColumnListItem;
});
注意Facotry 函数的参数必须是sId和oContext。如果点击次数大于或等于100,则cell中包括一个sap.m.Text
和一个sap.m.ObjectStatus
对象,垂直布局。如果点击次数小于100,则只有一个sap.m.Text
来显示。函数最后需要使用return语句返回sap.m.ColumnListItem
对象。
贴上完整代码:
/**
* Aggregation binding using factory function
* Demo written by Stone Wang
*/
// application data
var oAppData = [
{ articleName: "SAP成本计算流程", type: "Locked", hits: 1048 },
{ articleName: "SAP物料价格修改", type: "Draft", hits: 58 },
{ articleName: "2017年SAP技术方向", type: "Unsaved", hits: 320},
{ articleName: "《人类简史》读后感", type: "Flagged", hits: 90 },
{ articleName: "《Core Java》第十版出版", type: "Favorite" , hits: 66}
];
var oModel = new sap.ui.model.json.JSONModel();
oModel.setData({ modelData: oAppData });
sap.ui.getCore().setModel(oModel);
// 定义Column数组,包含3列
var aColumns = [
new sap.m.Column({
header : new sap.m.Label({text : "文章"})
}),
new sap.m.Column({
header : new sap.m.Label({text : "标记"})
}),
new sap.m.Column({
header : new sap.m.Label({text: "阅读次数"})
})
]
// Table control
var oTable = new sap.m.Table({
columns : aColumns
});
// 使用Factory function实现动态的数据显示
oTable.bindAggregation("items", "/modelData", function(sId, oContext){
var oColumnListItem = new sap.m.ColumnListItem(sId, {vAlign: "Middle"});
oColumnListItem.addCell(new sap.m.Text({text: "{articleName}"}));
oColumnListItem.addCell(new sap.m.ObjectMarker({type: "{type}"}));
var oHits = oContext.getProperty("hits");
if (oHits >= 100) {
oColumnListItem.addCell(
new sap.ui.layout.VerticalLayout({
content: [
new sap.m.Text({text: "{hits}"}),
new sap.m.ObjectStatus({text:"热门", state:"Success"})
]
})
)
} else {
oColumnListItem.addCell(
new sap.m.Text({text: "{hits}"})
)
}
return oColumnListItem;
});
var oTablePanel = new sap.m.Panel({
headerText: "文章列表",
content: oTable
});
var oStandalonePanel = new sap.m.Panel("standalone-panel", {
headerText: "图例:",
content: [
new sap.m.ObjectMarker({type: sap.m.ObjectMarkerType.Locked}),
new sap.m.ObjectMarker({type: sap.m.ObjectMarkerType.Flagged}),
new sap.m.ObjectMarker({type: sap.m.ObjectMarkerType.Favorite}),
new sap.m.ObjectMarker({type: sap.m.ObjectMarkerType.Draft}),
new sap.m.ObjectMarker({type: sap.m.ObjectMarkerType.Unsaved})
]
});
var oApp = new sap.m.App({ initialPage: "page" });
var oPage = new sap.m.Page("page", {
title:"Aggregation binding demo",
content: [oTablePanel, oStandalonePanel]
});
oApp.addPage(oPage).placeAt("content");
页面显示效果如下:
用xmlview实现factory方法的聚合绑定
xmlview是声明式的,factory方式的聚合绑定却是为了实现动态的显示。那么,如何在xmlview中实现动态呢?要点如下:
1)xmlview中对需要动态显示的部分不作声明
2)在controller中定义factory function,实现控件的绑定和动态加载。
仍然用刚才的例子进行重构,项目文件和路径如下:
将数据放在json文件articles.json中,内容:
[
{ "articleName": "SAP成本计算流程", "type": "Locked", "hits": 1048 },
{ "articleName": "SAP物料价格修改", "type": "Draft", "hits": 58 },
{ "articleName": "2017年SAP技术方向", "type": "Unsaved", "hits": 320},
{ "articleName": "《人类简史》读后感", "type": "Flagged", "hits": 90 },
{ "articleName": "《Core Java》第十版出版", "type": "Favorite" , "hits": 66}
]
index.html只有oApp
和oView,
oApp`放在DIV中。
aggregation_binding.view.xml:
注意sap.m.Table只声明了columns,没有声明items。items在代码中实现。
aggregation_binding.controller.js:
sap.ui.define(["sap/ui/core/mvc/Controller"],
function(Controller){
"use strict";
// controller name
return Controller.extend("bindingtest.controller.aggregation_binding", {
//-------------------------------
// initialization
//-------------------------------
onInit: function() {
// binding view with model
var oModel = sap.ui.model.json.JSONModel();
oModel.loadData('binding_test/model/articles.json');
this.getView().setModel(oModel);
// Table object add items
var oTable = this.getView().byId("table");
oTable.bindItems({path: '/', factory: this.createCellsFactory});
},
//------------------------------------------------
// Factory function to add cells for table
//------------------------------------------------
createCellsFactory: function(sId, oContext) {
var oColumnListItem = new sap.m.ColumnListItem(sId, {vAlign: "Middle"});
// first two cells are not dynamic
oColumnListItem.addCell(new sap.m.Text({text: "{articleName}"}));
oColumnListItem.addCell(new sap.m.ObjectMarker({type: "{type}"}));
// third cell is dynamic
var oHits = oContext.getProperty("hits");
if (oHits >= 100) {
oColumnListItem.addCell(
new sap.ui.layout.VerticalLayout({
content: [
new sap.m.Text({text: "{hits}"}),
new sap.m.ObjectStatus({text:"热门", state:"Success"})
]
})
)
} else {
oColumnListItem.addCell(
new sap.m.Text({text: "{hits}"})
)
}
return oColumnListItem;
} // end of createCellsFactory()
});
}
);
在onInit()中调用oTable的bindItems方法,bindItems方法包含factory方法: oTable.bindItems({path: '/', factory: this.createCellsFactory});