对象不支持属性或方法“ findIndex” IE11 javascript问题

Zab*_*abs 3 javascript internet-explorer internet-explorer-11

我有一个AngularJS应用程序,它给我Internet Explorer 11中的一些问题-在我的管理区域中,我收到控制台日志错误,该错误似乎与我在页面中注意到的某些问题有关,这些问题是在使用Internet Explorer(特别是版本11)时过滤数据的),但在Chrome / Firefox等系统中很好。

Object doesn't support property or method 'findIndex' 
at Anonymous function (http://myapp.local/js/controllers/admin/UsersController.js:363:9)
Run Code Online (Sandbox Code Playgroud)

当我导航到代码中的这一行时,这是有问题的部分:-

[363]   var indexInOriginalSet = $scope.originalSet.findIndex(function(u) {
[364]        return u.id == userId;
[365]   });
Run Code Online (Sandbox Code Playgroud)

用findIndex解决此IE问题的最佳解决方案是什么?

小智 5

您可以使用polyfill,尤其是以下一种:

// https://tc39.github.io/ecma262/#sec-array.prototype.findIndex
if (!Array.prototype.findIndex) {
  Object.defineProperty(Array.prototype, 'findIndex', {
    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 k.
        var kValue = o[k];
        if (predicate.call(thisArg, kValue, k, o)) {
          return k;
        }
        // e. Increase k by 1.
        k++;
      }

      // 7. Return -1.
      return -1;
    }
  });
}
Run Code Online (Sandbox Code Playgroud)

您可以在这里找到更多详细信息