SAPUI5 (14) - 数据绑定之元素绑定(element binding)

元素绑定指根据上下文(binding context)使用相对绑定的方式绑定到model数据的某一具体对象(查看帮助)。尤其适用于主从数据显示(master-detail data)的情况。比如我们有一个供应商的清单,当选择供应商的时候,显示该供应商所提供的产品。下面的页面是本篇要实现的功能,当点击左边某一个产品时,在右边显示产品的相关信息:

左边是一个List控件,右边在Panel中放置几个控件组合。当选择左边某个产品的时候,右边相应显示该产品的信息。这就是一个Element Binding的例子。下面介绍实现的方法。先介绍涉及的两个控件。

sap.m.List

The List control provides a container for all types of list items. For mobile devices, the recommended limit of list items is 100 to assure proper performance. To improve initial rendering of large lists, use the "growing" feature. Please refer to the SAPUI5 Developer Guide for more information.. (点击查看)

List控件适用于显示行项目,所有类型都可以。对于移动设备来说,出于性能考虑,不要超过100行。使用growing特性可以加速内部的渲染。

List控件继承自sap.m.ListBase,ListBase的items聚合属性(类型:sap.m.ListeItemBase[]) 设置行项目的模板,比如:

new sap.m.List({
    items: {path: '/Products', template: oTemplate}
});

设置List的行项目绑定到json数据的"/Products",行项目模板为oTemplate。oTemplate可以选择合适的控件。也可以使用bindItems方法:

new sap.m.List().bindItems({
    path: '/Products', template: oTemplate
});

sap.m.ObjectListItem

ObjectListItem is a display control that provides summary information about an object as a list item. The ObjectListItem title is the key identifier of the object. Additional text and icons can be used to further distinguish it from other objects. Attributes and statuses can be used to provide additional meaning about the object to the user. (查看原文)

ObjectListItem适用于显示行项目的信息,主要使用title属性进行标识,text、icon、atrributes和statuses等属性可以用于提供对象更多信息。这个控件的属性与ObjectIdentifier比较类似,能够显示的信息也比较多。

这个控件继承自sap.m.ObjectListItem,使用ObjectListItem的press事件,对用户的点击做出回应。

Element Binding示例

数据

本示例数据来自openui5 demo kit。将数据放在products.json文件中。

{ "Products": [ {
     "ProductID": 1,
     "ProductName": "Chai",
     "SupplierID": 1,
     "CategoryID": 1,
     "QuantityPerUnit": "10 boxes x 20 bags",
     "UnitPrice": "18.0000",
     "UnitsInStock": 39,
     "UnitsOnOrder": 0,
     "ReorderLevel": 10,
     "Discontinued": false
    }, {
     "ProductID": 2,
     "ProductName": "Chang",
     "SupplierID": 1,
     "CategoryID": 1,
     "QuantityPerUnit": "24 - 12 oz bottles",
     "UnitPrice": "19.0000",
     "UnitsInStock": 17,
     "UnitsOnOrder": 40,
     "ReorderLevel": 25,
     "Discontinued": false
    }, {
     "ProductID": 3,
     "ProductName": "Aniseed Syrup",
     "SupplierID": 1,
     "CategoryID": 2,
     "QuantityPerUnit": "12 - 550 ml bottles",
     "UnitPrice": "10.0000",
     "UnitsInStock": 13,
     "UnitsOnOrder": 70,
     "ReorderLevel": 25,
     "Discontinued": false
    }, {
     "ProductID": 4,
     "ProductName": "Chef Anton's Cajun Seasoning",
     "SupplierID": 2,
     "CategoryID": 2,
     "QuantityPerUnit": "48 - 6 oz jars",
     "UnitPrice": "22.0000",
     "UnitsInStock": 53,
     "UnitsOnOrder": 0,
     "ReorderLevel": 0,
     "Discontinued": false
    }, {
     "ProductID": 5,
     "ProductName": "Chef Anton's Gumbo Mix",
     "SupplierID": 2,
     "CategoryID": 2,
     "QuantityPerUnit": "36 boxes",
     "UnitPrice": "21.3500",
     "UnitsInStock": 0,
     "UnitsOnOrder": 0,
     "ReorderLevel": 0,
     "Discontinued": true
    }]
  }

代码

代码全部写在index.html中:

<!DOCTYPE HTML>
<html>
    <head>
        <meta http-equiv="X-UA-Compatible" content="IE=edge">
        <meta http-equiv='Content-Type' content='text/html;charset=UTF-8'/>

        <script src="resources/sap-ui-core.js"
                id="sap-ui-bootstrap"
                data-sap-ui-libs="sap.m, sap.ui.layout"
                data-sap-ui-theme="sap_bluecrystal">
        </script>

        <script>        
        
            sap.ui.getCore().attachInit(function(){
                
                // 绑定json数据到core对象
                var oModel = new sap.ui.model.json.JSONModel();
                oModel.loadData("webapp/model/products.json");
                sap.ui.getCore().setModel(oModel);
                
                // 使用ObjectListItem定义行项目的template
                var oTemplate = new sap.m.ObjectListItem({
                    title: "{ProductName}",
                    type: "Active",
                    // 点击的时候设置oPrdDetail.Panel绑定到当前行
                    press: function(oEvent){
                        var oContext = oEvent.getSource().getBindingContext();
                        var sPath = oContext.getPath();

                        oPrdDetailPanel.bindElement({path: sPath}); 
                    }
                });             
                    
                // 定义一个Panel,在Panel中放置List, List使用oTemplate
                // 作为行的模板
                var oPrdListPanel = new sap.m.Panel({
                    headerText: "产品清单",
                    content: [new sap.m.List({
                        items: {path: '/Products', template: oTemplate}
                    })]
                });
                
                // 明细数据使用垂直布局,每一行包括Label和Input                  
                var aProductDetailInfo = new sap.ui.layout.VerticalLayout({
                    content: [
                        new sap.ui.layout.HorizontalLayout({
                            content: [
                                new sap.m.Label({
                                    text: "Product Id:",width: "150px"
                                }),
                                new sap.m.Input({value: "{ProductID}"})
                            ]
                        }),
                    
                        new sap.ui.layout.HorizontalLayout({
                            content: [
                                new sap.m.Label({
                                    text: "Product Name:",width: "150px"
                                }),
                                new sap.m.Input({value: "{ProductName}"})
                            ]
                        }),
                    
                        new sap.ui.layout.HorizontalLayout({
                            content: [
                                new sap.m.Label({
                                    text: "Quantity Per Unit:",width: "150px"
                                }),
                                new sap.m.Input({value: "{QuantityPerUnit}"})
                            ]
                        }),
                        
                        new sap.ui.layout.HorizontalLayout({
                            content: [
                                new sap.m.Label({
                                    text: "Unit Price:",width: "150px"
                                }),
                                new sap.m.Input({value: "{UnitPrice}"})
                            ]
                        })  
                    ]
                });
                
                var oPrdDetailPanel = new sap.m.Panel("prdDetailPanel", {
                    headerText: "产品明细",
                    width: "auto",
                    content: [aProductDetailInfo]
                });     
                
                new sap.ui.layout.HorizontalLayout({
                    content: [oPrdListPanel, oPrdDetailPanel]
                }).placeAt("content");
                
            });             
            
        </script>

    </head>
    <body class="sapUiBody sapUiResponsiveMargin" role="application">
        <div id="content"></div>
    </body>
</html>

代码说明

  • 产品清单数据,使用sap.m.List显示,这是一个聚合绑定。为了能够获取所选择的产品,我们需要有event handler的控件,所以使用sap.m.ObjectListItempress事件获取所选择产品的path:
// 使用ObjectListItem定义一个行项目template
var oTemplate = new sap.m.ObjectListItem({
    title: "{ProductName}",
    type: "Active",
    // 点击的时候设置oPrdDetail.Panel绑定到当前行
    press: function(oEvent){
        var oContext = oEvent.getSource().getBindingContext();
        var sPath = oContext.getPath();

        oPrdDetailPanel.bindElement({path: sPath}); 
    }
});     

当用户点击选择的时候,oEvent.getSource().getBindingContext()获取绑定的项,再使用getPath()方法得到path路径,然后设置右边的detailPanel与这个路径绑定。

oEvent是一个sap.ui.base.Event对象,getSouce()方法得到事件的提供者,类型是sap.ui.base.EventProvider

  • 产品明细的信息,使用sap.m.Panel绑定到某一行(bindElement()方法),比如“/Products/0”,然后Panel中的控件使用相对绑定获取要显示的数据。比如:
new sap.m.Input({value: "{UnitPrice}"}

master-detail另一种典型模式

还有一种常见的master-detail模式,就是detail部分为多笔数据。比如定位到某供应商后,查看这个供应商所提供的产品清单。下图是一个示例:

对这种detail包含多笔数据的情况,可以通过filter的方法实现。以下是代码:

supplier_products.json

{
    "suppliers": [
        {
            "id": "1",
            "supplier_name" : "康富食品",
            "contact": "黄小姐"
        }, {
            "id": "2",
            "supplier_name" : "为全",
            "contact": "王先生"
        }, {
            "id": "3",
            "supplier_name" : "康堡",
            "contact": "刘先生"
        }
    ],   
    "products": [
        {
            "supplier_id":"1",
            "product_id":"1",
            "product_name": "海鲜粉"
        }, {
            "supplier_id":"1",
            "product_id":"2",
            "product_name": "胡椒粉"
        }, {
            "supplier_id":"1",
            "product_id":"3",
            "product_name": "桂花糕"
        }, {
            "supplier_id":"2",
            "product_id":"1",
            "product_name": "啤酒"
        }, {
            "supplier_id":"3",
            "product_id":"1",
            "product_name": "土豆片"
        }, {
            "supplier_id":"3",
            "product_id":"2",
            "product_name": "鸡汤"
        },{
            "meal_no":"2",
            "day_id":"3",
            "items": "果仁巧克力"
        }
    ]
}

index.html

<!DOCTYPE HTML>
<html>
    <head>
        <meta http-equiv="X-UA-Compatible" content="IE=edge">
        <meta http-equiv='Content-Type' content='text/html;charset=UTF-8'/>

        <script src="resources/sap-ui-core.js"
                id="sap-ui-bootstrap"
                data-sap-ui-libs="sap.m, sap.ui.layout, sap.ui.table"
                data-sap-ui-theme="sap_bluecrystal">
        </script>

        <script>        
        
            sap.ui.getCore().attachInit(function(){
                
                // 绑定json数据到core对象
                var oModel = new sap.ui.model.json.JSONModel();
                oModel.loadData("webapp/model/supplier_products.json");
                sap.ui.getCore().setModel(oModel);
                
                // sap.ui.table.Table对象,显示供应商
                var oColumns = [
                    new sap.ui.table.Column({
                        label: new sap.m.Label({text: "ID"}),
                        visible: false,
                        template: new sap.m.Text({text: "{id}"})
                    }),
                    new sap.ui.table.Column({
                        label: new sap.m.Label({text: "供应商名称"}),
                        visible: true,
                        template: new sap.m.Text({text: "{supplier_name}"})
                    }),
                    new sap.ui.table.Column({
                        label: new sap.m.Label({text: "联系人"}),
                        visible: true,
                        template: new sap.m.Text({text: "{contact}"})
                    })
                ];
                
                var oSupplierTable = new sap.ui.table.Table({
                    width: "100%",
                    title: "供应商",
                    visibleRowCount: 3,
                    selectionMode: sap.ui.table.SelectionMode.Single,
                    editable: false,
                    columns: oColumns
                }); 
                
                oSupplierTable.bindRows("/suppliers");              
                oSupplierTable.placeAt("master");
                
                // 定义sap.ui.table.Table对象,显示供应商的产品
                var oColumnsDetail = [
                    new sap.ui.table.Column({
                        label: new sap.m.Label({text: "产品ID"}),
                        visible: true,
                        template: new sap.m.Text({text: "{product_id}"})
                    }),
                    new sap.ui.table.Column({
                        label: new sap.m.Label({text: "产品名称"}),
                        visible: true,
                        template: new sap.m.Text({text: "{product_name}"})
                    })                  
                ];
                
                var oProductTable = new sap.ui.table.Table({
                    width: "100%",
                    title: "产品",
                    visibleRowCount: 3,
                    selectionMode: sap.ui.table.SelectionMode.Single,
                    editable: false,
                    columns: oColumnsDetail
                }); 
                
                oProductTable.bindRows("/products");
                oProductTable.placeAt("detail");
                
                // 定义rowselectionchange事件的处理函数
                oSupplierTable.attachRowSelectionChange(function(oEvent){
                    // 获取row index
                    var oRowContext = oEvent.getParameter("rowContext");
                    
                    // 根据row index获取model数据中的id
                    var sSelectedId = oModel.getProperty("id", oRowContext);                    
                    
                    // 对products中的数据进行过滤
                    var oBinding = oProductTable.getBinding();
                    
                    // 过滤条件:supplier_id = id
                    var oFilter = new sap.ui.model.Filter(
                            "supplier_id",
                            sap.ui.model.FilterOperator.EQ,
                            sSelectedId);
                    
                    // 执行过滤
                    oBinding.filter(oFilter);
                });
                
            }); // end of attachInit()          
            
        </script>

    </head>
    <body class="sapUiBody sapUiResponsiveMargin" role="application">
        <div id="master"></div>
        <div id="detail"></div>
    </body>
</html>

代码说明:

  • 供应商表一共3列,但id不显示。
  • 在supplier表的rowselectionChange事件中对products进行筛选:
oSupplierTable.attachRowSelectionChange(function(oEvent){
    // 获取row index
    var oRowContext = oEvent.getParameter("rowContext");
    
    // 根据row index获取model数据中的id
    var sSelectedId = oModel.getProperty("id", oRowContext);                    
    
    // 对products中的数据进行过滤
    var oBinding = oProductTable.getBinding();
    
    // 过滤条件:supplier_id = id
    var oFilter = new sap.ui.model.Filter(
            "supplier_id",
            sap.ui.model.FilterOperator.EQ,
            sSelectedId);
    
    // 执行过滤
    oBinding.filter(oFilter);
});

sap.ui.table.Table没有getBindingContext()方法,但包含rowContext属性,所以通过var oRowContext = oEvent.getParameter("rowContext")获取行的上下文,如果选中第一行,rowContext就是constructor {oModel: d, sPath: "/suppliers/0"}。然后通过var sSelectedId = oModel.getProperty("id", oRowContext);就能获取到所选择行的供应商id。

  • 过滤的代码比较直观,请参照代码注释理解。
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 215,294评论 6 497
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,780评论 3 391
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 161,001评论 0 351
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,593评论 1 289
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,687评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,679评论 1 294
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,667评论 3 415
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,426评论 0 270
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,872评论 1 307
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,180评论 2 331
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,346评论 1 345
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,019评论 5 340
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,658评论 3 323
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,268评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,495评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,275评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,207评论 2 352

推荐阅读更多精彩内容