highstock Array.prototype.find调用null或undefined

时间:2018-06-12 01:31:51

标签: javascript ruby-on-rails highstock

Highstock 6.1.0抱怨

Array.prototype.find called on null or undefined

这是根据chrome inspect

出错的源代码
t.find = function(t, e) {
        return [].find.call(t, e)  <---
    }

我尝试修改highstock.src.js源代码,但不起作用

 H.find = Array.prototype.find ?
                function (arr, callback) {
                    if (arr === undefined || arr === null) {   //I added this
                       return;
                     }
                    return arr.find(callback);
                } :
                // Legacy implementation. PhantomJS, IE <= 11 etc. #7223.
                function (arr, fn) {
                    var i,
                        length = arr.length;

                    for (i = 0; i < length; i++) {
                        if (fn(arr[i], i)) {
                            return arr[i];
                        }
                    }
                };

我在Rails 4.1.8中使用highstock

0 个答案:

没有答案