0

在进行一些跨浏览器测试(在 IE8 模式下使用 IE Edge)时,由于 Less JS (v2.7.1) 的错误,页面无法正确呈现。控制台日志是:

SCRIPT438:对象不支持属性或方法“绑定”文件:less.js,行:1896,列:1

缩小版本 SCRIPT438 也是如此:对象不支持属性或方法“绑定”文件:less.min.js,行:13,列:27226

我读过 IE8 及以下不支持绑定因此问题。

谁能提供一个解决方案来解决这个问题,而不必完全转储 Less JS(不是一个选项)?

4

1 回答 1

0

您可以使用 polyfill bind,例如MDN 的. 如链接中所述,与本地版本存在一些差异。

if (!Function.prototype.bind) {
    Function.prototype.bind = function(oThis) {
       if (typeof this !== 'function') {
       // closest thing possible to the ECMAScript 5
       // internal IsCallable function
       throw new TypeError('Function.prototype.bind - what is trying to be bound is not callable');
    }

    var aArgs   = Array.prototype.slice.call(arguments, 1),
        fToBind = this,
        fNOP    = function() {},
        fBound  = function() {
            return fToBind.apply(this instanceof fNOP
                   ? this
                   : oThis,
                   aArgs.concat(Array.prototype.slice.call(arguments)));
        };

    if (this.prototype) {
        // Function.prototype doesn't have a prototype property
        fNOP.prototype = this.prototype; 
    }
    fBound.prototype = new fNOP();

    return fBound;
};

}

于 2016-09-20T06:12:46.050 回答