


The combination mode can be understood as a tree structure, so the combination mode is suitable for operating a large number of objects, especially those with clear hierarchies. Let's take a look at the tutorial on using the combination mode in the development of the so-called object-oriented JavaScript design mode
In our usual development process, we will definitely encounter this situation: processing simple objects and complex objects composed of simple objects at the same time. These simple objects and complex objects will be combined into a tree structure, and they will be processed on the client. Be consistent when handling. For example, for product orders on e-commerce websites, each product order may have multiple sub-order combinations, such as operating system folders. Each folder has multiple sub-folders or files. As a user, we can copy, delete, etc. When operating, whether it is a folder or a file, it is the same for us operators. In this scenario, it is very suitable to use the combination mode.
Basic knowledge
Combining mode: Combining objects into a tree structure to represent the "part-whole" hierarchy, the combination mode allows users to combine single objects and combinations Objects are used consistently.
The combination mode mainly has three roles:
(1) Abstract component (Component): abstract class, which mainly defines the public interface of the objects participating in the combination
(2) Sub-object (Leaf): forms the combined object The most basic object
(3) Composite object (Composite): a complex object composed of sub-objects
The key to understanding the combination mode is to understand the consistency of the combination mode's use of single objects and combined objects. Let's next Let’s talk about the implementation of the combination model to deepen our understanding.
The combination mode is tailor-made for dynamically creating UI on the page. You can use only one command = to initialize some complex or recursive operations for many objects. The combination mode provides two advantages:
(1 ) allows you to treat a group of objects as a specific object. A composite object (A composite) performs the same operation as the sub-objects that make up it. Performing an operation on the composite object will cause all sub-objects under the object to perform the same operation. .So you can not only seamlessly replace a single object with a set of objects, but also vice versa. These independent objects are so-called loosely coupled.
(2) The combination mode will combine the sub-object sets into a tree structure and allows traversing the entire tree. This hides the internal implementation and allows you to organize the sub-objects in any way. Any code in this object (composite object) will not depend on the implementation of the internal sub-objects.
Implementation of combination mode
(1) The simplest combination mode
The DOM structure of the HTML document is a natural tree structure, the most basic element It is transformed into a DOM tree and finally a DOM document, which is very suitable for the combination mode.
We commonly use the jQuery class library, in which the combination mode is even more frequently used. For example, the following code is often implemented:
$(".test").addClass("noTest").remove("test");
This simple code is to get the element whose class contains test, and then addClass and removeClass processing, whether $(".test") is one element or multiple elements, is ultimately called through the unified addClass and removeClass interfaces.
Let’s simply simulate the implementation of addClass:
var addClass = function (eles, className) { if (eles instanceof NodeList) { for (var i = 0, length = eles.length; i < length; i++) { eles[i].nodeType === 1 && (eles[i].className += (' ' + className + ' ')); } } else if (eles instanceof Node) { eles.nodeType === 1 && (eles.className += (' ' + className + ' ')); } else { throw "eles is not a html node"; } } addClass(document.getElementById("p3"), "test"); addClass(document.querySelectorAll(".p"), "test");
This code simply simulates the implementation of addClass (not considering compatibility and versatility for the time being). It simply determines the node type first, and then based on different Type adds className. For NodeList or Node, client calls all use the addClass interface. This is the most basic idea of the combination mode, making the use of parts and the whole consistent.
(2) Typical example
We mentioned a typical example earlier: a product order contains multiple product sub-orders, multiple Product sub-orders form a complex product order. Due to the characteristics of the Javascript language, we simplify the three roles of the combination mode into two roles:
(1) Sub-object: In this example, the sub-object is the product sub-order
(2) Combination object: here It is the total order of the product
Suppose we develop a travel product website, which contains two sub-products: air tickets and hotels. We define the sub-objects as follows:
function FlightOrder() { } FlightOrder.prototyp.create = function () { console.log("flight order created"); } function HotelOrder() { } HotelOrder.prototype.create = function () { console.log("hotel order created"); }
The above code defines two classes: air ticket orders class and hotel order class, each class has its own order creation method.
Next we create a total order class:
function TotalOrders() { this.orderList = []; } TotalOrders.prototype.addOrder = function (order) { this.orderList.push(order); } TotalOrders.prototype.create = function (order) { for (var i = 0, length = this.orderList.length; i < length; i++) { this.orderList[i].create(); } }
This object mainly has three members: order list, method of adding orders, and method of creating orders.
When used on the client side, it is as follows:
var flight = new FlightOrder(); flight.create(); var orders = new TotalOrders(); orders.addOrder(new FlightOrder()); orders.addOrder(new HotelOrder()); orders.create();
The client call shows two methods, one is to create a single ticket order, and the other is to create multiple orders, but in the end both are through create Method to create, this is a very typical application scenario of the combination mode.
SummaryThe combination mode is not difficult to understand. It mainly solves the problem of consistency in the use of single objects and combined objects. This is a good candidate for using the Composite pattern if your objects have a clear hierarchical structure and you want to work with them uniformly. In Web development, this kind of hierarchical structure is very common, and it is very suitable for using the combination mode, especially for JS. There is no need to stick to the form of traditional object-oriented languages, and the characteristics of the JS language can be flexibly used to achieve partial and overall use. consistency.
(1) Scenarios for using combination modeUse combination mode only when encountering the following two situations
A. A collection of objects containing a certain hierarchical structure (the specific structure is in the development process Unable to determine)
B. Hope to perform some operation on these objects or some of them
(2) Disadvantages of the combination modeBecause any operation on the combined object will affect all sub-objects Calls the same operation, so there will be performance issues when the combined structure is large. Also, when using combined mode to encapsulate HTML, you must choose appropriate tags. For example, table cannot be used in combined mode, and the leaf nodes are not obvious
The above is what I compiled for everyone. I hope it will be helpful to everyone in the future.
Related articles:
The above is the detailed content of Tutorial on the use of combination patterns in JavaScript design pattern development (advanced). For more information, please follow other related articles on the PHP Chinese website!

去掉重复并排序的方法:1、使用“Array.from(new Set(arr))”或者“[…new Set(arr)]”语句,去掉数组中的重复元素,返回去重后的新数组;2、利用sort()对去重数组进行排序,语法“去重数组.sort()”。

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于Symbol类型、隐藏属性及全局注册表的相关问题,包括了Symbol类型的描述、Symbol不会隐式转字符串等问题,下面一起来看一下,希望对大家有帮助。

怎么制作文字轮播与图片轮播?大家第一想到的是不是利用js,其实利用纯CSS也能实现文字轮播与图片轮播,下面来看看实现方法,希望对大家有所帮助!

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于对象的构造函数和new操作符,构造函数是所有对象的成员方法中,最早被调用的那个,下面一起来看一下吧,希望对大家有帮助。

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于面向对象的相关问题,包括了属性描述符、数据描述符、存取描述符等等内容,下面一起来看一下,希望对大家有帮助。

方法:1、利用“点击元素对象.unbind("click");”方法,该方法可以移除被选元素的事件处理程序;2、利用“点击元素对象.off("click");”方法,该方法可以移除通过on()方法添加的事件处理程序。

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于BOM操作的相关问题,包括了window对象的常见事件、JavaScript执行机制等等相关内容,下面一起来看一下,希望对大家有帮助。

foreach不是es6的方法。foreach是es3中一个遍历数组的方法,可以调用数组的每个元素,并将元素传给回调函数进行处理,语法“array.forEach(function(当前元素,索引,数组){...})”;该方法不处理空数组。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool

Dreamweaver Mac version
Visual web development tools

Notepad++7.3.1
Easy-to-use and free code editor

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

SublimeText3 Mac version
God-level code editing software (SublimeText3)
