美文网首页
lodash | 2. 集合操作

lodash | 2. 集合操作

作者: ShadowFieldEric | 来源:发表于2022-09-05 13:53 被阅读0次
    1. 抽取集合中的某项数据成数组
    var users = [
      { 'user': 'barney' },
      { 'user': 'fred' }
    ];
     
    // The `_.property` iteratee shorthand.
    _.map(users, 'user');
    // => ['barney', 'fred']
    

    相关文章

      网友评论

          本文标题:lodash | 2. 集合操作

          本文链接:https://www.haomeiwen.com/subject/aobgzktx.html