美文网首页
js中策略模式

js中策略模式

作者: 阿凯_8b27 | 来源:发表于2023-02-06 11:41 被阅读0次

    将定义的一组算法封装起来,使其相互置间可以替换,封装的算法具有一定独立性,不会随客户端变化而变化
    ····
    var IputStrategy = function(){
    var strategy = {
    notNull: function(value){
    return /\s+/.test(value) ? '请输入内容' : ''
    },
    number: function(value){
    /** 具体实现自行 /
    return true;
    },
    phone: function(){
    /
    * 具体实现自行 */
    return true;
    }
    }
    return {
    check: function(type, value){
    return strategytype;
    },
    addSrategy: function(type, value){
    strategy[type] = fn
    }
    }
    }
    ···

    相关文章

      网友评论

          本文标题:js中策略模式

          本文链接:https://www.haomeiwen.com/subject/ttxeaktx.html