命令

  • 将请求封装成对象
    function Command()
    {
        
        /**
         * 宏命令集合
         */
        var objects = [];
        
        
        /**
         * 添加
         */
        this.add = function(obj)
        {
            objects.push(obj)
        }
        
        /**
         * 执行
         */
        this.execute = function()
        {
            for(var i=0;i

你可能感兴趣的:(命令)