• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

TypeScript lang.isArray函数代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

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



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

示例1: transform

 transform(todos, args){ 
   if (isBlank(args) || args.length == 0) {
     throw new BaseException('VisibleTodos pipe requires one argument');
   }
   if (isPresent(todos) && !isArray(todos)){
     throw new BaseException('VisibleTodos pipe requires an Array as input');
   }
   return this.getVisibleTodos(todos, args[0]);
 }
开发者ID:AjinkyaKher,项目名称:React_Redux_Angular2_TodoApp,代码行数:9,代码来源:visibleTodosPipe.ts


示例2: _extractToken

function _extractToken(typeOrFunc, metadata /*any[] | any*/,
                       params: any[][]): ReflectiveDependency {
  var depProps = [];
  var token = null;
  var optional = false;

  if (!isArray(metadata)) {
    if (metadata instanceof InjectMetadata) {
      return _createDependency(metadata.token, optional, null, null, depProps);
    } else {
      return _createDependency(metadata, optional, null, null, depProps);
    }
  }

  var lowerBoundVisibility = null;
  var upperBoundVisibility = null;

  for (var i = 0; i < metadata.length; ++i) {
    var paramMetadata = metadata[i];

    if (paramMetadata instanceof Type) {
      token = paramMetadata;

    } else if (paramMetadata instanceof InjectMetadata) {
      token = paramMetadata.token;

    } else if (paramMetadata instanceof OptionalMetadata) {
      optional = true;

    } else if (paramMetadata instanceof SelfMetadata) {
      upperBoundVisibility = paramMetadata;

    } else if (paramMetadata instanceof HostMetadata) {
      upperBoundVisibility = paramMetadata;

    } else if (paramMetadata instanceof SkipSelfMetadata) {
      lowerBoundVisibility = paramMetadata;

    } else if (paramMetadata instanceof DependencyMetadata) {
      if (isPresent(paramMetadata.token)) {
        token = paramMetadata.token;
      }
      depProps.push(paramMetadata);
    }
  }

  token = resolveForwardRef(token);

  if (isPresent(token)) {
    return _createDependency(token, optional, lowerBoundVisibility, upperBoundVisibility, depProps);
  } else {
    throw new NoAnnotationError(typeOrFunc, params);
  }
}
开发者ID:844496869,项目名称:angular,代码行数:54,代码来源:reflective_provider.ts


示例3: transform

 transform(todos:ToDoItem[], args:any[]):ToDoItem[] {
     if (args.length ==- 0) {
         throw new BaseException('Visible todos pipe requires one argument')
     }
     
     if (isPresent(todos) && !isArray(todos)) {
         throw new BaseException('Visible todo pipe requires an array as input')
     }
     
     return this.getVisibleToDos(todos, args[0]);
 }
开发者ID:ruiwanguk,项目名称:todo-angular2-redux,代码行数:11,代码来源:toDoItemPipe.ts


示例4: _createControl

  _createControl(controlConfig: any): modelModule.AbstractControl {
    if (controlConfig instanceof modelModule.Control ||
        controlConfig instanceof modelModule.ControlGroup ||
        controlConfig instanceof modelModule.ControlArray) {
      return controlConfig;

    } else if (isArray(controlConfig)) {
      var value = ListWrapper.get(controlConfig, 0);
      var validator = controlConfig.length > 1 ? controlConfig[1] : null;
      return this.control(value, validator);

    } else {
      return this.control(controlConfig);
    }
  }
开发者ID:KenWilliamson,项目名称:Angular2HostedMobileApp,代码行数:15,代码来源:form_builder.ts


示例5: _createControl

  /** @internal */
  _createControl(controlConfig: any): modelModule.AbstractControl {
    if (controlConfig instanceof modelModule.Control ||
        controlConfig instanceof modelModule.ControlGroup ||
        controlConfig instanceof modelModule.ControlArray) {
      return controlConfig;

    } else if (isArray(controlConfig)) {
      var value = controlConfig[0];
      var validator = controlConfig.length > 1 ? controlConfig[1] : null;
      var asyncValidator = controlConfig.length > 2 ? controlConfig[2] : null;
      return this.control(value, validator, asyncValidator);

    } else {
      return this.control(controlConfig);
    }
  }
开发者ID:kreo,项目名称:angular-2-bootstraping,代码行数:17,代码来源:form_builder.ts


示例6: deserialize

  deserialize(map: any, type: Type, data?: any): any {
    if (!isPresent(map)) {
      return null;
    }
    if (isArray(map)) {
      var obj: List<any> = new List<any>();
      ListWrapper.forEach(map, (val) => { obj.push(this.deserialize(val, type, data)); });
      return obj;
    }
    if (type == String) {
      return map;
    }

    if (type == ViewDefinition) {
      return this._deserializeViewDefinition(map);
    } else if (type == DirectiveBinder) {
      return this._deserializeDirectiveBinder(map);
    } else if (type == ProtoViewDto) {
      return this._deserializeProtoViewDto(map);
    } else if (type == RenderDirectiveMetadata) {
      return this._deserializeDirectiveMetadata(map);
    } else if (type == RenderElementBinder) {
      return this._deserializeElementBinder(map);
    } else if (type == ASTWithSource) {
      return this._deserializeASTWithSource(map, data);
    } else if (type == RenderProtoViewRef) {
      return this._protoViewStore.deserialize(map);
    } else if (type == RenderProtoViewMergeMapping) {
      return this._deserializeRenderProtoViewMergeMapping(map);
    } else if (type == RenderViewRef) {
      return this._renderViewStore.deserializeRenderViewRef(map);
    } else if (type == RenderFragmentRef) {
      return this._renderViewStore.deserializeRenderFragmentRef(map);
    } else if (type == WebWorkerElementRef) {
      return this._deserializeWorkerElementRef(map);
    } else if (type == EventBinding) {
      return this._deserializeEventBinding(map);
    } else if (type == ElementPropertyBinding) {
      return this._deserializeElementPropertyBinding(map);
    } else {
      throw new BaseException("No deserializer for " + type.toString());
    }
  }
开发者ID:lavinjj,项目名称:angular,代码行数:43,代码来源:serializer.ts


示例7: serialize

 serialize(obj: any, type: Type): Object {
   if (!isPresent(obj)) {
     return null;
   }
   if (isArray(obj)) {
     var serializedObj = [];
     ListWrapper.forEach(obj, (val) => { serializedObj.push(this.serialize(val, type)); });
     return serializedObj;
   }
   if (type == String) {
     return obj;
   }
   if (type == ViewDefinition) {
     return this._serializeViewDefinition(obj);
   } else if (type == DirectiveBinder) {
     return this._serializeDirectiveBinder(obj);
   } else if (type == ProtoViewDto) {
     return this._serializeProtoViewDto(obj);
   } else if (type == RenderElementBinder) {
     return this._serializeElementBinder(obj);
   } else if (type == RenderDirectiveMetadata) {
     return this._serializeDirectiveMetadata(obj);
   } else if (type == ASTWithSource) {
     return this._serializeASTWithSource(obj);
   } else if (type == RenderProtoViewRef) {
     return this._protoViewStore.serialize(obj);
   } else if (type == RenderProtoViewMergeMapping) {
     return this._serializeRenderProtoViewMergeMapping(obj);
   } else if (type == RenderViewRef) {
     return this._renderViewStore.serializeRenderViewRef(obj);
   } else if (type == RenderFragmentRef) {
     return this._renderViewStore.serializeRenderFragmentRef(obj);
   } else if (type == WebWorkerElementRef) {
     return this._serializeWorkerElementRef(obj);
   } else if (type == ElementPropertyBinding) {
     return this._serializeElementPropertyBinding(obj);
   } else if (type == EventBinding) {
     return this._serializeEventBinding(obj);
   } else {
     throw new BaseException("No serializer for " + type.toString());
   }
 }
开发者ID:lavinjj,项目名称:angular,代码行数:42,代码来源:serializer.ts


示例8: supportsObj

 static supportsObj(obj): boolean { return isString(obj) || isArray(obj); }
开发者ID:cedriclam,项目名称:angular,代码行数:1,代码来源:limit_to_pipe.ts


示例9: supports

 private supports(obj: any): boolean { return isString(obj) || isArray(obj); }
开发者ID:844496869,项目名称:angular,代码行数:1,代码来源:slice_pipe.ts



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


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
TypeScript lang.isBlank函数代码示例发布时间:2022-05-25
下一篇:
TypeScript lang.hasConstructor函数代码示例发布时间:2022-05-25
热门推荐
热门话题
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap