9

我们 Mootoolers 和 Prototypers(这个网站上很少有人)通常携带一个方便的工具箱,其中包含我们创建(或借用)的函数,我们在原生 javascript 对象上实现这些函数,以使我们的生活更轻松一些。我想得到一个非常有用的原型函数列表,但只有那些在本机对象上实现的函数(即String.implement({...在 mootools 中)。

那么,你最喜欢的是什么?


PS:我同时包含了 mootools 和原型,因为为一个库编写的函数很容易移植到另一个库。

PPS:我知道支持/反对对原生 javascript 对象进行原型设计的论点,我宁愿在这里避免讨论。

4

5 回答 5

2

我继续 tj111 开始的内容,这是我的小补充:

Array.implement({
    //calculate the sum of all integers
    sum: function() {
        var sum = this.reduce(function(a, b) {
            return a + b;
        });
        return sum;
    }
});
于 2011-05-31T18:29:36.343 回答
1

我喜欢在创建之前如何检查属性,以避免覆盖本机属性。

if(!Array.prototype.indexOf) {
    Array.prototype.indexOf = function(){ ... };
}
于 2009-07-30T15:09:47.463 回答
1
//taken from http://prototype.lighthouseapp.com/projects/8886/tickets/351-new-swap-method-for-elements
Element.addMethods({
  swap: (function() {
    if ('swapNode' in document.documentElement)
      return function(element, other) {
        return $(element).swapNode($(other));
      };
    return function(element, other) {
       element = $(element);
       other = $(other);
       var next = other.nextSibling, parent = other.parentNode;
       element.parentNode.replaceChild(other, element);
       return parent.insertBefore(element, next);
    };
  })()
 });


// extend the array object to support indexed insertions
// submitted at http://prototype.lighthouseapp.com/projects/8886-prototype/tickets/356-arrayinsert
Array.prototype.insert=function(element,where) {
    var slice1=this.slice(0,where);
    var slice2=this.slice(where);

    return new Array.concat(slice1,element,slice2);
};


//extend the array object to support searching thrtough indexed arrays
// if returnIndex is true, then return the keyName, else return the value from that cell
Array.prototype.nextValue=function(startIndex,returnIndex) {
    for(var i=startIndex+1;i<this.length;i++){
        if(this[i]){
            return (returnIndex?i:this[i]);
        }
    }
    return null;
};


//extend the array object to support searching thrtough indexed arrays
// if returnIndex is true, then return the keyName, else return the value from that cell
Array.prototype.prevValue=function(startIndex,returnIndex) {
    for(var i=startIndex-1;i>=0;i--){
        if(this[i]){
            return (returnIndex?i:this[i]);
        }
    }
    return null;
};
于 2009-07-16T12:58:14.863 回答
1

我并没有真正使用 Prototype 和 Mootools 进行开发,但我想以下内容在这些框架中也会很有用。

替换使用指定精度的可选第二个参数的本机Math.round()

Math.round(3.1415, 2); // 3.14

用于获取否定谓词的函数的not()方法:

var even = function(x){ return x % 2 === 0; };
var odd = even.not();
even(2); // true
odd(2); // false

但最有用的东西是那些,如果这是一种安全的方法,我会添加到 Object.prototype 中,所以我有一些全局函数来迭代对象属性。

objMap()与 Array.map() 类似,但用于对象:

// returns {a:2, b:4, c:6}
objMap({a:1, b:2, c:3}, function(value) {
  return value*2;
});

objValues()objKeys()从对象中获取属性名称或值的数组:

objValues({a:1, b:2, c:3}); // [1, 2, 3]
objKeys({a:1, b:2, c:3}); // ["a", "b", "c"]

当然objReduce()几乎可以做任何可以想象的事情......

实施细节留给读者练习:-)

于 2009-07-30T14:59:49.073 回答
1

以下是我最喜欢的一些 mootools。

字符串函数

String.implement({

    //easy way to test if a string contains characters (input.value.isEmpty())
    isEmpty : function() {
        return (!this.test(/\w+/));
    },

    //add ellipses if string length > len
    ellipse : function(len) {
        return (this.length > len) ? this.substr(0, len) + "..." : this;
    },

    //finds all indexOf occurrences
    indexesOf : function(val) {
        var from = 0;
        var indexes = [];
        while (0 <= from && from < this.length) {
            var idx = this.indexOf(val, from);
            if (idx >= 0) {
                indexes.push(idx);
            } else {
                break;
            }
            from = idx+1;
        }
        return indexes;
    }
});

数组函数

Array.implement({

    //compare two arrays to see if they are identical
    compare : function(arr, strict) {
        strict = strict || false;
        if (this.length != arr.length)          return false;

        for (var i = 0; i < this.length; i++) {
            if ($type(this[i]) == "array") {
                if (!this[i].compare(arr[i]))   return false;
            }
            if (strict) {
                if (this[i] !== arr[i])     return false;
            } else {
                if (this[i] != arr[i])      return false;
            }
        }
        return true;
    },

    //remove non-unique array values
    unique : function() {
        for(var i = 0; i< this.length; i++) {
            var keys = this.indexesOf(this[i]);
            while (keys.length > 1) {
                this.splice(keys.pop(), 1);
            }
        }
        return this;
    },

    //same as array.unshift, except returns array instead of count
    //good for using inline... array.lpush('value').doSomethingElse()
    lpush : function() {
        for (var i = arguments.length -1 ; i >= 0; i--){
            this.unshift(arguments[i]);
        }
        return this;
    },

    //get all indexes of an item in an array
    indexesOf : function(item) {
        var ret = [];
        for (var i = 0; i < this.length; i++) {
            if (this[i] == item)    ret.push(i);
        }
        return ret;
    }
});
于 2009-07-14T19:24:17.593 回答