SAP UI5 Tutorial
SAP UI5 Useful Resources
Selected Reading
- Creating a Project in Web IDE
- SAP UI5 - Mobile
- SAP UI5 - Theming
- SAP UI5 - Extending Applications
- SAP UI5 - Notepad Controls
- SAP UI5 - Localization
- SAP UI5 - Modularization
- SAP UI5 - Design Patterns
- SAP UI5 - Data binding
- SAP UI5 - Controls
- SAP UI5 - Creating a UI5 Project
- SAP UI5 - Developer Studio
- SAP UI5 - Views
- SAP UI5 - MVC Concept
- SAP UI5 - Development Kit
- SAP UI5 - Control Libraries
- SAP UI5 - Key Components
- SAP UI5 - Architecture
- SAP UI5 - Overview
- SAP UI5 - Home
SAP UI5 Useful Resources
Selected Reading
- Who is Who
- Computer Glossary
- HR Interview Questions
- Effective Resume Writing
- Questions and Answers
- UPSC IAS Exams Notes
SAP UI5 - Modularization
SAP UI5 - Modularization
在“SAPUI5”中,大型 Java本应用的开发提供了支持模块化的框架。 <>模块化概念允许你将申请分成较小部分,并可在操作时合并。 这些较小的应用部分称为模块化。
您可以宣布自己的Java模块,称之为格丽吉·库列斯帕·德宣告功能,用于跟踪模块名称和已经装满的模块。
为了装上模块,你必须使用 j Query.sap.require
Example
<script> jQuery.sap.require(“sap.ui.commons.MessageBox”); ……………………… </script>
如果需要一个模块,则需要,而模块没有装上,则自动装上。 它把申报方法称作需要时,它知道该模块已经装载。
Advertisements