翼度科技»论坛 编程开发 JavaScript 查看内容

JavaScript 装饰器模式用法详解

2

主题

2

帖子

6

积分

新手上路

Rank: 1

积分
6
什么是装饰器模式

装饰器模式(Decorator Pattern)是一种结构型设计模式,它允许动态地向一个对象添加新的行为。在不改变对象本身的情况下,通过将对象包装在一个装饰器中,来增强对象的功能。这个模式的核心是使用一个装饰器类,来包装一个被装饰的类,使得装饰器类可以动态地添加新的功能或者修改已有的功能。
装饰器模式的主要用途是为一个原始对象添加新的功能或者修改已有的功能,同时保持原始对象的接口不变,并且可以在运行时动态地添加或删除功能

为什么要有装饰器模式

在开发过程中,我们经常需要扩展一个类或对象的功能,但是直接修改类或对象可能会导致代码复杂性和可维护性下降。装饰器模式提供了一种优雅的方式来扩展类或对象的功能,且无需修改基本的对象或类。它使代码更加模块化、易于维护和扩展。

装饰器模式应用场景

JS装饰器模式通常用于以下场景:

  • 将对象的功能添加到已存在的对象中,而不影响原始对象的接口。
  • 实现AOP(面向切面编程)并在多个组件之间共享代码。
  • 通过运行时组合来实现功能,而不是继承。

举个栗子

下面我们来举 2 个例子,更加具象的理解什么是装饰器模式:

给汽车加个真皮座椅
  1. class Car {
  2.   constructor() {
  3.     this.price = 10000;
  4.     this.speed = '100 km/h';
  5.   }

  6.   getPrice() {
  7.     return this.price;
  8.   }

  9.   getSpeed() {
  10.     return this.speed;
  11.   }
  12. }

  13. // 汽车装饰器
  14. class CarDecorator {
  15.   constructor(car) {
  16.     this.car = car;
  17.   }

  18.   getPrice() {
  19.     return this.car.getPrice();
  20.   }

  21.   getSpeed() {
  22.     return this.car.getSpeed();
  23.   }
  24. }

  25. // 真皮座椅装饰器
  26. class LeatherSeatsDecorator extends CarDecorator {
  27.   constructor(car) {
  28.     super(car);
  29.     this.price = 1000;
  30.     this.description = 'Leather seats';
  31.   }

  32.   getPrice() {
  33.     return this.car.getPrice() + this.price;
  34.   }

  35.   getDescription() {
  36.     return this.car.getDescription() + ', ' + this.description;
  37.   }
  38. }

  39. let car = new Car();
  40. console.log(car.getPrice()); // 10000

  41. // 带有真皮座椅的汽车
  42. let carWithLeatherSeats = new LeatherSeatsDecorator(car);
  43. console.log(carWithLeatherSeats.getPrice()); // 11000
  44. console.log(carWithLeatherSeats.getDescription()); // undefined, Leather seats
复制代码
在上面的代码中,我们定义了一个 Car 类作为原始对象,并且定义了一个 CarDecorator 类作为装饰器类。然后我们定义了一个 LeatherSeatsDecorator 类,它继承自 CarDecorator 类,用来添加真皮座椅的功能。

一个简单的数据缓存
  1. class DataService {
  2.   fetchData() {
  3.     console.log("Fetching data from server...");
  4.     return [1, 2, 3];
  5.   }
  6. }

  7. class DataCacheDecorator {
  8.   constructor(dataService) {
  9.     this.dataService = dataService;
  10.     this.cache = null;
  11.   }

  12.   fetchData() {
  13.     if (this.cache === null) {
  14.       console.log("Cache not exist...");
  15.       this.cache = this.dataService.fetchData();
  16.     } else {
  17.       console.log("Data retrieved from cache");
  18.     }
  19.     return this.cache;
  20.   }
  21. }

  22. let dataService = new DataService();
  23. dataService = new DataCacheDecorator(dataService);

  24. console.log(dataService.fetchData());
  25. console.log(dataService.fetchData());
复制代码
上述代码将有如下输出:
  1. Cache not exist...Fetching data from server...[1, 2, 3]Data retrieved from cache[1, 2, 3]
复制代码
总结

JS装饰器模式提供了一种优雅的方式来扩展类或对象的功能,而无需修改基本的对象或类。它使代码更加模块化、易于维护和扩展。在适当的情况下,使用装饰器模式可以提高代码的可读性和可维护性。
为了更好的理解装饰器模式,本文选取了 2 个简单易理解的例子。真实场景下 JS 装饰器模式的应用要复杂的多,目前 ES6、TypeScript、React、Express、Koa、Mobx、Redux 等场景都已经广泛使用了 JS 装饰器,以后文章会针对上述场景进行具体详细介绍。
到此这篇关于JavaScript 装饰器模式详解的文章就介绍到这了,更多相关JavaScript 装饰器模式内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

来源:https://www.jb51.net/article/283949.htm
免责声明:由于采集信息均来自互联网,如果侵犯了您的权益,请联系我们【E-Mail:cb@itdo.tech】 我们会及时删除侵权内容,谢谢合作!

举报 回复 使用道具