jQuery $.map 的 Angular 等价物?

Posted

技术标签:

【中文标题】jQuery $.map 的 Angular 等价物?【英文标题】:Angular equivalent of jQuery $.map? 【发布时间】:2013-03-02 22:34:30 【问题描述】:

我正在从依赖 jQuery 过渡到使用 AngularJS 构建应用程序。建议在number of places 中不要混合使用 jQuery 和 Angular 代码。

我想念的一件事是用于数组的 jQuery $.map 函数。我知道这可以使用本机 javascript map function 重写,但这并不是在所有浏览器中都实现(尤其是 IE

那么,是否有 Angular 等价物,或者我应该回去写 for (var x = 0; x < foo; x += 1) ... 以便我可以停止包含 jQuery?

更新 有时,您只需要知道要搜索的内容。 Bergie 说“寻找 polyfills”。这是一份参考指南(来自 Modernizr 团队),其中包含大量资源,可让现代代码在旧版浏览器上运行:html5 Cross Browser Polyfills

【问题讨论】:

你可以只包含一个 ES5 polyfill,它们对于那些数组迭代函数来说是简单而准确的。 Angular 并不是一个 JS 库。它是用于构建单页应用程序的框架。尽管它确实有一些实用功能(请参阅angular.forEach),但它并没有试图告诉您如何处理低级 JS 操作。这就是 Lo-Dash/Underscore 和朋友的用途。 除了@Stewie 提到的之外,过了一段时间,Angular 实际上转储了一堆 jquery 并将其称为 JQLite - 所以当你使用 Angular 时,无论你喜欢,你都会得到很多 jquery它与否。也可以使用它。尽管像 Angular 的 forEach 这样的东西仍然有很多浪费,如果存在的话,最好利用 jquery。 docs.angularjs.org/api/angular.element 他们警告不要与 angular 混合的那种 jquery 是直接摆弄 dom 的那种,而不是把函数映射到 javascript 数组的实用工具。 【参考方案1】:

在这里查看:https://developer.mozilla.org/en-US/docs/JavaScript/Reference/Global_Objects/Array/map

Mozilla 为不受支持的浏览器提供了 Array.map 填充

if (!Array.prototype.map) 
  Array.prototype.map = function(callback, thisArg) 

    var T, A, k;

    if (this == null) 
      throw new TypeError(" this is null or not defined");
    

    // 1. Let O be the result of calling ToObject passing the |this| value as the argument.
    var O = Object(this);

    // 2. Let lenValue be the result of calling the Get internal method of O with the argument "length".
    // 3. Let len be ToUint32(lenValue).
    var len = O.length >>> 0;

    // 4. If IsCallable(callback) is false, throw a TypeError exception.
    // See: http://es5.github.com/#x9.11
    if (typeof callback !== "function") 
      throw new TypeError(callback + " is not a function");
    

    // 5. If thisArg was supplied, let T be thisArg; else let T be undefined.
    if (thisArg) 
      T = thisArg;
    

    // 6. Let A be a new array created as if by the expression new Array(len) where Array is
    // the standard built-in constructor with that name and len is the value of len.
    A = new Array(len);

    // 7. Let k be 0
    k = 0;

    // 8. Repeat, while k < len
    while(k < len) 

      var kValue, mappedValue;

      // a. Let Pk be ToString(k).
      //   This is implicit for LHS operands of the in operator
      // b. Let kPresent be the result of calling the HasProperty internal method of O with argument Pk.
      //   This step can be combined with c
      // c. If kPresent is true, then
      if (k in O) 

        // i. Let kValue be the result of calling the Get internal method of O with argument Pk.
        kValue = O[ k ];

        // ii. Let mappedValue be the result of calling the Call internal method of callback
        // with T as the this value and argument list containing kValue, k, and O.
        mappedValue = callback.call(T, kValue, k, O);

        // iii. Call the DefineOwnProperty internal method of A with arguments
        // Pk, Property Descriptor Value: mappedValue, : true, Enumerable: true, Configurable: true,
        // and false.

        // In browsers that support Object.defineProperty, use the following:
        // Object.defineProperty(A, Pk,  value: mappedValue, writable: true, enumerable: true, configurable: true );

        // For best browser support, use the following:
        A[ k ] = mappedValue;
      
      // d. Increase k by 1.
      k++;
    

    // 9. return A
    return A;
  ;      

【讨论】:

太棒了!直接和现场。 OP 在问题中有指向同一页面的链接...但也许他没有看到补丁? @thesystem :我承认我匆忙掩盖了它。 “他们”是谁?我在角度来源中没有看到任何这段代码 @kilianc “他们”是 Mozilla 开发者网络,此答案中的链接指向其页面的人。你看到的他们 polyfill 是他们对旧浏览器的建议。【参考方案2】:

不,Angular 中没有等价物。正如您所发现的,不,您不需要回退到编写命令式代码。

相反,只需使用直接内置于 JavaScript 中的 map 函数。如果您需要支持 IE8,请在脚本开头插入 polyfill。

【讨论】:

以上是关于jQuery $.map 的 Angular 等价物?的主要内容,如果未能解决你的问题,请参考以下文章

Angular 6 中 AngularJS 的 ngcookie 等价于啥? [关闭]

AngularJS $watch 的 Angular 等价物是啥?

Angular 'ng-container' 的 React 等价物是啥

Angular中访问DOM元素的“链接”函数的等价物是啥

Vue <slot/> 的 Angular 等价物是啥?

Ionic 4 迁移:Ionic 3 生命周期事件/导航守卫的 Angular 等价物是啥?