UI5的Data binding

二次信任 提交于 2020-03-09 08:18:03

学习了解一下UI5的数据binding

UI5作为一个成熟的企业级UI开发框架,其最大的特点就是遵循MVC的设计,也就是将代码逻辑清晰地区分为数据源(model) - UI(view) - 应用逻辑(controller)这三部分。数据binding就是model和view之间如何交互。

UI5的数据binding主要有三种方式:

  1. Property binding
  2. Aggregation binding
  3. Element binding

binding有双向和单向。双向,也就是前端数据和数据模型都可以相互实时自动更新。 单向,就是从模型的更改会让视图自动显示变化。

  • Property binding

UI组件的属性和数据模型可以绑定在一起,实现自动同步。

Code Example:

Component.js:

初始化一个model

init: function() {
            // call the base component's init function
            UIComponent.prototype.init.apply(this, arguments);

            var oData = {
                recipient: {
                    name: "World"
                }

            };
            var oModel = new JSONModel(oData);
            this.setModel(oModel);
            ...
}

View.xml:

通过{/recipient/name}的语法即可自动将数据和视图绑定。

<Button text="hello" press=".onShowHello"/>
            <Input 
                value="{/recipient/name}"
                valueLiveUpdate="true"
                width="60%"
            />

Controller.js:

添加一个事件的监听来测试:

onShowHello: function() {

            var sRecipient = this.getView().getModel().getProperty("/recipient/name");
            var sMsg = this.getResourceBundle().getText("helloMsg", sRecipient);
            //this.getResourceBundle().getText("masterTitleCount", [0]),

            // alert("Hello World");
            MessageToast.show(sMsg);
        },

测试运行:

在这里插入图片描述

  • Aggregation binding

可以根据模型的数据来自动创建列表形式的子组件。

demo数据JSON文件,包含了几个员工的薪资数据:

[
    {
        "id": 1,
        "name": "Bilbo Baggins",
        "salary": 1000,
        "department": null
    },
    {
        "id": 2,
        "name": "Frodo Baggins",
        "salary": 2000,
        "department": null
    },
    {
        "id": 4,
        "name": "abc",
        "salary": 3000,
        "department": {
            "id": 3,
            "name": "dddd"
        }
    }
]

View.xml:

前端展示一个列表,通过{employee>/}即可自动和员工数据绑定起来:

<List headerText="{i18n>Employees}" class="sapUiResponsiveMargin" width="auto" items="{employee>/}">
                <items>
                    <ObjectListItem title="{employee>name}" number="{
                            parts: [{path: 'employee>salary'}, 'CNY'],
                            type: 'sap.ui.model.type.Currency',
                            formatOptions: {
                            showMeasure: false
                        }
                    }" numberUnit="CNY"/>
                </items>
            </List>

测试运行:

在这里插入图片描述

  • Element binding

可以将某个模型对象和一个页面上的系列组件一起绑定。

比如选中某行数据后,希望下面通过一个表单来同步显示这行数据的详细信息。

那么主要的思路就是:

  1. 在View中添加一个Form以及一些子组件,每个组件对应到对象的属性。
  2. 为列表的行项目添加一个事件监听的属性,在这里就是ObjectListItem的press事件。
  3. 在controller中监听事件的方法中,把当前选中行的对象绑定到视图的某个parent UI组件。

代码示例:

View.xml添加Form:

<form:FormContainer id="employeeForm" visible="true">
                        <form:formElements>
                            <form:FormElement visible="true">
                                <form:label>
                                    <Label text="ID" design="Standard" width="100%" required="false" textAlign="Begin" textDirection="Inherit" visible="true"/>
                                </form:label>
                                <form:fields>
                                    <Text text="{ID}" width="auto" maxLines="1" wrapping="false" textAlign="Begin" textDirection="Inherit" visible="true"/>
                                </form:fields>
                            </form:FormElement>
                            <form:FormElement visible="true">
                                <form:label>
                                    <Label text="Name" design="Standard" width="100%" required="false" textAlign="Begin" textDirection="Inherit" visible="true"/>
                                </form:label>
                                <form:fields>
                                    <Text text="{Name}" width="auto" maxLines="1" wrapping="false" textAlign="Begin" textDirection="Inherit" visible="true"/>
                                </form:fields>
                            </form:FormElement>
                            <form:FormElement visible="true">
                                <form:label>
                                    <Label text="Salary" design="Standard" width="100%" required="false" textAlign="Begin" textDirection="Inherit" visible="true"/>
                                </form:label>
                                <form:fields>
                                    <Text text="{Salary}" width="auto" maxLines="1" wrapping="false" textAlign="Begin" textDirection="Inherit" visible="true"/>
                                </form:fields>
                            </form:FormElement>
                            <form:FormElement visible="true">
                                <form:label>
                                    <Label text="Position" design="Standard" width="100%" required="false" textAlign="Begin" textDirection="Inherit" visible="true"/>
                                </form:label>
                                <form:fields>
                                    <Text text="{Position}" width="auto" maxLines="1" wrapping="false" textAlign="Begin" textDirection="Inherit" visible="true"/>
                                </form:fields>
                            </form:FormElement>
                            <form:FormElement visible="true">
                                <form:label>
                                    <Label text="Evaluation" design="Standard" width="100%" required="false" textAlign="Begin" textDirection="Inherit" visible="true"/>
                                </form:label>
                                <form:fields>
                                    <Input value="" type="Text" showValueHelp="false" enabled="true" visible="true" width="auto" valueHelpOnly="false" required="false" valueStateText="Invalid entry" maxLength="0"/>
                                </form:fields>
                            </form:FormElement>
                            <form:FormElement visible="true">
                                <form:label>
                                    <Label text="Date" design="Standard" width="100%" required="false" textAlign="Begin" textDirection="Inherit" visible="true"/>
                                </form:label>
                                <form:fields>
                                    <DatePicker width="auto" displayFormat="medium" required="false" valueStateText="Invalid entry" enabled="true" visible="true" valueFormat="yyyyMMdd"/>
                                </form:fields>
                            </form:FormElement>
                        </form:formElements>
                        <form:title/>
                    </form:FormContainer>

Controller.js:

element binding的代码。首先获取到当前行项目的BindingContext,然后获取到Path,比如“/employeeSet/1”。然后将path通过bindElement方法绑定到UI组件,这里就是id为employeeForm的一个表单。

onItemSelected: function(oEvent) {
            var oSelectedItem = oEvent.getSource();
            var oContext = oSelectedItem.getBindingContext();
            var sPath = oContext.getPath();
            var oProductDetailPanel = this.byId("employeeForm");
            oProductDetailPanel.bindElement({ path: sPath });
        }

测试运行:

在这里插入图片描述

小结

在前端开发中,最重要的核心就是和后端数据的交互,所以学习了解UI5提供的一系列data binding机制,还是很有用处的,可以大幅提高开发效率。

参考阅读

  • https://openui5.org/documentation/
标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!