在IE

时间:2017-05-12 06:56:08

标签: javascript jquery internet-explorer arrow-functions

这是我的小提琴https://jsfiddle.net/y1s6pttt/我写下了我的代码

这在Chrome和Mozilla中运行良好,但在IE中则不行。问题出在箭头符号上。箭头符号在IE中不起作用。

这是我在IE中遇到问题的代码部分。

  months1 = data.reduce((p,c) => ~p.indexOf(c.months) ? p : p.concat(c.months),[]),

  series = data.reduce((p,c) => { var f = p.find(f => f.name == c.project_title);

            !!f ? f.data[months1.indexOf(c.months)] = c.amount*1

            : p.push({name: c.project_title, id:c.project_title,

            data: (new Array(months1.length)).fill(0).map((e,i) => i === months1.indexOf(c.months) ? c.amount*1 : e)});

            return p;

         },[]);

Babel

执行后,我已使用下面的代码替换了代码
  months1 = data.reduce(function (p, c) {

   return ~p.indexOf(c.months) ? p : p.concat(c.months);
    }, []),
    series = data.reduce(function (p, c) {

    var f = p.find(function (f) {

      return f.name == c.project_title;

     });

    !!f ? f.data[months1.indexOf(c.months)] = c.amount * 1 : p.push({ name: c.project_title, id: c.project_title,

    data: new Array(months1.length).fill(0).map(function (e, i) {

    return i === months1.indexOf(c.months) ? c.amount * 1 : e;

   }) });

   return p;
   }, []);

即使用Babel代码替换后,我收到错误对象不支持jquery中的属性或方法'find'

我需要用任何其他函数替换箭头符号来获得类似的输出。如何根据需要更改代码。

1 个答案:

答案 0 :(得分:0)

Internet Explorer不支持arrow functions,也不支持阵列在其任何版本中使用的find功能(这些天我对IE 感到更惊讶>支持某些东西,但它没有。您似乎已经在Babel生成的代码中处理了箭头函数问题,所以现在您只需要find函数的polyfill。这是我在上面链接的MDN页面中的一个:

// https://tc39.github.io/ecma262/#sec-array.prototype.find
if (!Array.prototype.find) {
  Object.defineProperty(Array.prototype, 'find', {
    value: function(predicate) {
     // 1. Let O be ? ToObject(this value).
      if (this == null) {
        throw new TypeError('"this" is null or not defined');
      }

      var o = Object(this);

      // 2. Let len be ? ToLength(? Get(O, "length")).
      var len = o.length >>> 0;

      // 3. If IsCallable(predicate) is false, throw a TypeError exception.
      if (typeof predicate !== 'function') {
        throw new TypeError('predicate must be a function');
      }

      // 4. If thisArg was supplied, let T be thisArg; else let T be undefined.
      var thisArg = arguments[1];

      // 5. Let k be 0.
      var k = 0;

      // 6. Repeat, while k < len
      while (k < len) {
        // a. Let Pk be ! ToString(k).
        // b. Let kValue be ? Get(O, Pk).
        // c. Let testResult be ToBoolean(? Call(predicate, T, « kValue, k, O »)).
        // d. If testResult is true, return kValue.
        var kValue = o[k];
        if (predicate.call(thisArg, kValue, k, o)) {
          return kValue;
        }
        // e. Increase k by 1.
        k++;
      }

      // 7. Return undefined.
      return undefined;
    }
  });
}

如果IE的版本太旧以至于它不支持Object.defineProperty,那么您可以创建一个全局find函数,该数组将数组作为参数以及要查找的对象。但是,您需要更改对数组对象参数名称的所有this引用。

看到reduce工作,你不应该为此填充或indexOf,但我会在这里链接到他们的polyfill以防万一未来的访问者需要它们(他们在IE&lt; 9)上失败。