zoukankan      html  css  js  c++  java
  • HTML5开发移动web应用——SAP UI5篇(8)

    本次对之前学习的SAP UI5框架知识进行简单小结。以及重点部分知识的梳理。

    1、在UI5使用过程中,命名空间的概念非常重要。

    2、一般的sap组件引用格式例如以下:

    sap.ui.define([
       "sap/ui/core/UIComponent",
       "sap/ui/model/json/JSONModel",
       "sap/ui/model/resource/ResourceModel"], function (UIComponent, JSONModel, ResourceModel) 

    define后每引用sap的一个组件。后面的function就要传入一个相应的參数。

    3、下面是component使用的基本框架:

    sap.ui.define([
       "sap/ui/core/UIComponent"], function (UIComponent) {
       "use strict";
       return UIComponent.extend("", {
     
          init : function () {
             // call the init function of the parent
             UIComponent.prototype.init.apply(this, arguments);
    }
       });});

    Component的构建流程如上,extend UIComponent这个框架,里面init为初始化函数。里面能够设定其它属性(包含配置模型等),例如以下:

    sap.ui.define([
       "sap/ui/core/UIComponent",
       "sap/ui/model/json/JSONModel",
       "sap/ui/model/resource/ResourceModel"], function (UIComponent, JSONModel, ResourceModel) {
       "use strict";
       return UIComponent.extend("sap.ui.demo.wt.Component", {
                metadata : {
    rootView: "sap.ui.demo.wt.view.App"
    },
          init : function () {
             // call the init function of the parent
             UIComponent.prototype.init.apply(this, arguments);
             // set data model
             var oData = {
                recipient : {
                   name : "World"
                }
             };
             var oModel = new JSONModel(oData);
             this.setModel(oModel);
     
             // set i18n model
             var i18nModel = new ResourceModel({
                bundleName : "sap.ui.demo.wt.i18n.i18n"
             });
             this.setModel(i18nModel, "i18n");
          }
       });});

    4、注意manifest文件在一个应用中的重要性,manifest.jsonapp的配置文件。

  • 相关阅读:
    工厂方法模式
    简单工厂模式
    页面滚动动画
    JAVA的深浅拷备
    雷哥架构师课程大钢
    字节与字符串转换
    商城图片懒加载
    MYSQL数据库类型与JAVA类型对应表
    微信支付二码生成办法
    项目中dubbo的标准配置
  • 原文地址:https://www.cnblogs.com/wzjhoutai/p/7230953.html
Copyright © 2011-2022 走看看