当前位置: 首页>>代码示例>>TypeScript>>正文


TypeScript array.map函数代码示例

本文整理汇总了TypeScript中dojo/_base/array.map函数的典型用法代码示例。如果您正苦于以下问题:TypeScript map函数的具体用法?TypeScript map怎么用?TypeScript map使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。


在下文中一共展示了map函数的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。

示例1: function

 getChildren: function (treeNode, options) {
     var data = [];
     if (treeNode.__hpcc_children.length) {
         data = treeNode.__hpcc_children;
     } else {
         switch (this._viewMode) {
             case "Targets":
                 data = arrayUtil.map(treeNode.__hpcc_treeItem.__hpcc_children, function (item) {
                     return this.createTreeNode(treeNode, item);
                 }, this);
                 break;
             case "Services":
                 if (!treeNode.__hpcc_parentNode) {
                     arrayUtil.forEach(treeNode.__hpcc_treeItem.__hpcc_children, function (child) {
                         var serviceNode = this.createTreeNode(treeNode, child);
                         var machines = [];
                         var bindings = [];
                         arrayUtil.forEach(child.__hpcc_children, function (gchild) {
                             if (gchild instanceof TpMachine) {
                                 machines.push(gchild);
                             } else if (gchild instanceof TpBinding) {
                                 bindings.push(gchild);
                             }
                         }, this);
                         arrayUtil.forEach(bindings, function (binding) {
                             var bindingNode = this.createTreeNode(serviceNode, binding);
                             arrayUtil.forEach(machines, function (machine) {
                                 this.createTreeNode(bindingNode, machine);
                             }, this);
                         }, this);
                         arrayUtil.forEach(machines, function (machine) {
                             var machineNode = this.createTreeNode(serviceNode, machine);
                             arrayUtil.forEach(bindings, function (binding) {
                                 this.createTreeNode(machineNode, binding);
                             }, this);
                         }, this);
                         data.push(serviceNode);
                     }, this);
                 }
                 break;
             case "Debug":
                 data = arrayUtil.map(treeNode.__hpcc_treeItem.__hpcc_children, function (item) {
                     return this.createTreeNode(treeNode, item);
                 }, this);
                 break;
             default:
                 break;
         }
     }
     return QueryResults(this.queryEngine({}, {})(data));
 },
开发者ID:AttilaVamos,项目名称:HPCC-Platform,代码行数:51,代码来源:ESPTopology.ts

示例2: function

 removeSpillVertices: function () {
     var vertices = arrayUtil.map(this.vertices, function (vertex) { return vertex; });
     arrayUtil.forEach(vertices, function (vertex) {
         if (vertex.isSpill()) {
             vertex.remove();
         }
     }, this);
 },
开发者ID:AttilaVamos,项目名称:HPCC-Platform,代码行数:8,代码来源:ESPGraph.ts

示例3: function

 formatRows: function (columns, rows) {
     return arrayUtil.map(rows, function (row) {
         var rowFormatter = new RowFormatter(columns, row);
         return rowFormatter.row();
     });
 }
开发者ID:richardkchapman,项目名称:HPCC-Platform,代码行数:6,代码来源:ESPResult.ts


注:本文中的dojo/_base/array.map函数示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。