码迷,mamicode.com
首页 > 其他好文 > 详细

备忘录模式

时间:2020-06-17 12:55:29      阅读:59      评论:0      收藏:0      [点我收藏+]

标签:转移   return   http   color   net   回调函数   rate   pre   article   

https://blog.csdn.net/KlausLily/article/details/103046377

const baseOperateController = function() {
    // 缓存对象
    const cache = {};
    // 基础函数
    return function(params, fn, cb) {
        // 判断是否在缓存下
        if(cache[params]) {
            // 从缓存中读取并传递给业务函数
            fn(cache[params])
        }else {
            // 没有缓存则将控制权转移给外部回调函数,并传递相应参数
            cb && cb(params).then((res => {
                cache[params] = res.data;
            })).catch(err => console.log(err))
        }
    }
}

// 使用
baseOperateController(params, showView, asyncFn)

 

备忘录模式

标签:转移   return   http   color   net   回调函数   rate   pre   article   

原文地址:https://www.cnblogs.com/TTblog5/p/13151701.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!