• 使用策略模式优化多重if/else


    一、为什么需要策略模式?

            作为前端程序员,我们经常会遇到这样的场景,例如

            进入一个营销活动页面,会根据后端下发的不同 type ,前端页面展示不同的弹窗。

    1. async getMainData() {
    2. try {
    3. const res = await activityQuery(); // 请求后端数据
    4. this.styleType = res.styleType;
    5. if (this.styleType === STYLE_TYPE.Reward) {
    6. this.openMoneyPop();
    7. }else if (this.styleType === STYLE_TYPE.Waitreward) {
    8. this.openShareMoneyPop();
    9. } else if (this.styleType === STYLE_TYPE.Poster) {
    10. this.openPosterPop();
    11. } else if (this.styleType === STYLE_TYPE.Activity) {
    12. this.openActivityPop();
    13. } else if (this.styleType === STYLE_TYPE.Balance) {
    14. this.openBalancePop();
    15. } else if (this?.styleType === STYLE_TYPE.Cash) {
    16. this.openCashBalancePop();
    17. }
    18. } catch (error) {
    19. log.error(MODULENAME, '主接口异常', JSON.stringify(error));
    20. }
    21. }

            我们在写的时候也许不觉得,但是当我们去维护别人的代码时,这个代码的话看了就想打人,未来新增一种弹窗类型的话,我们需要到 getMainData 内部去补一个 else if,一不小心可能就会影响到原有的逻辑,并且随着迭代函数会越来越大。但其实每种弹窗是相互独立的,我们并不关心其他弹窗的逻辑。

            此时,就需要策略模式了。

    二、策略模式是什么?

            1.定义:策略模式作为一种软件设计模式 (opens new window),指对象有某个行为,但是在不同的场景中,该行为有不同的实现算法。

    策略模式:

    • 定义了一族算法(业务规则);
    • 封装了每个算法;
    • 这族的算法可互换代替(interchangeable)

            2.运用:借助策略模式的思想,我们可以尝试这样写:

    1. const strategies = {
    2. FirstStrategy() {
    3. console.log("Called FirstStrategy");
    4. },
    5. SecondStrategy() {
    6. console.log("Called SecondStrategy");
    7. },
    8. ThirdStrategy() {
    9. console.log("Called ThirdStrategy");
    10. }
    11. }
    12. const execute = (strategy) => {
    13. return strategies[strategy]();
    14. }
    15. execute('FirstStrategy')
    16. execute('SecondStrategy')
    17. execute('ThirdStrategy')

            将不同的处理逻辑都放到strategies这个对象里面去统一维护,然后通过给execute()这个方法传递不同的strategy参数,然后通过统一的strategies[strategy]()去根据参数匹配不同的处理逻辑。

    三、提炼优化

            当我们要处理的情况较多时,如果将所有的代码都写到一个文件中,看上去还是会有些臃肿,这个时候我们就要考虑是否可以将业务代码与逻辑处理代码分离开来,于是就有了进一步的优化,如下:

            1.我们可以将不同类型的处理逻辑代码全都拿到一个单独的文件当中,然后给出一个统一的函数去供业务使用:

    1. const popTypes = {
    2. [STYLE_TYPE.Reward]: function() {
    3. ...
    4. },
    5. [STYLE_TYPE.Waitreward]: function() {
    6. ...
    7. },
    8. [STYLE_TYPE.Poster]: function() {
    9. ...
    10. },
    11. [STYLE_TYPE.Activity]: function() {
    12. ...
    13. },
    14. [STYLE_TYPE.Balance]: function() {
    15. ...
    16. },
    17. [STYLE_TYPE.Cash]: function() {
    18. ...
    19. },
    20. }
    21. export function openPop(type){
    22. return popTypes[type]();
    23. }

            2.在我们需要的文件当中引入上面的配置文件

    import { openPop } from './popTypes';

            3.在拿到不同参数时再去根据参数,调用方法

    1. async getMainData() {
    2. try {
    3. const res = await activityQuery(); // 请求后端数据
    4. openPop(res.styleType)
    5. } catch (error) {
    6. log.error(MODULENAME, '主接口异常', JSON.stringify(error));
    7. }
    8. }

     现在,我们的代码是不是看上去就非常的清晰了呢?嘿嘿~~

  • 相关阅读:
    chrome中的一些调试工具
    软考之系统安全理论基础+例题
    uniapp音乐播放整理
    TensorRT基础笔记
    R语言ggplot2可视化:使用ggpubr包的ggmaplot函数可视化MA图(MA-plot)、font.label参数设置图中标签字体类型、字体大小
    怎么写一个可以鼠标控制旋转的div?
    云原生之使用Docker部署Nas-Cab个人NAS平台
    SpringMVC(一)SpringMVC 简介
    iOS17.4获取UDID安装mobileconfig描述文件失败 提示“安全延迟进行中”问题 | 失窃设备保护
    前端与后端如何开发不阻塞?
  • 原文地址:https://blog.csdn.net/gkx19898993699/article/details/133311344