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

TypeScript change_detection.Parser类代码示例

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

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



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

示例1: dashCaseToCamelCase

 _bindEvent(name, expression, current: CompileElement, newAttrs) {
   current.bindElement().bindEvent(
       dashCaseToCamelCase(name),
       this._parser.parseAction(expression, current.elementDescription));
   // Don't detect directives for event names for now,
   // so don't add the event name to the CompileElement.attrs
 }
开发者ID:goderbauer,项目名称:angular,代码行数:7,代码来源:property_binding_parser.ts


示例2: if

 _parseTemplateBindings(templateBindings: string, compileElement: CompileElement) {
   var bindings =
       this._parser.parseTemplateBindings(templateBindings, compileElement.elementDescription);
   for (var i = 0; i < bindings.length; i++) {
     var binding = bindings[i];
     if (binding.keyIsVar) {
       compileElement.bindElement().bindVariable(dashCaseToCamelCase(binding.key), binding.name);
       compileElement.attrs().set(binding.key, binding.name);
     } else if (isPresent(binding.expression)) {
       compileElement.bindElement().bindProperty(dashCaseToCamelCase(binding.key),
                                                 binding.expression);
       compileElement.attrs().set(binding.key, binding.expression.source);
     } else {
       DOM.setAttribute(compileElement.element, binding.key, '');
     }
   }
 }
开发者ID:KenWilliamson,项目名称:Angular2HostedMobileApp,代码行数:17,代码来源:view_splitter.ts


示例3: if

    MapWrapper.forEach(attrs, (attrValue, attrName) => {

      attrName = this._normalizeAttributeName(attrName);

      var bindParts = RegExpWrapper.firstMatch(BIND_NAME_REGEXP, attrName);
      if (isPresent(bindParts)) {
        if (isPresent(bindParts[1])) {  // match: bind-prop
          this._bindProperty(bindParts[6], attrValue, current, newAttrs);

        } else if (isPresent(
                       bindParts[2])) {  // match: var-name / var-name="iden" / #name / #name="iden"
          var identifier = bindParts[6];
          var value = attrValue == '' ? '\$implicit' : attrValue;
          this._bindVariable(identifier, value, current, newAttrs);

        } else if (isPresent(bindParts[3])) {  // match: on-event
          this._bindEvent(bindParts[6], attrValue, current, newAttrs);

        } else if (isPresent(bindParts[4])) {  // match: onbubble-event
          this._bindEvent('^' + bindParts[6], attrValue, current, newAttrs);

        } else if (isPresent(bindParts[5])) {  // match: bindon-prop
          this._bindProperty(bindParts[6], attrValue, current, newAttrs);
          this._bindAssignmentEvent(bindParts[6], attrValue, current, newAttrs);

        } else if (isPresent(bindParts[7])) {  // match: [(expr)]
          this._bindProperty(bindParts[7], attrValue, current, newAttrs);
          this._bindAssignmentEvent(bindParts[7], attrValue, current, newAttrs);

        } else if (isPresent(bindParts[8])) {  // match: [expr]
          this._bindProperty(bindParts[8], attrValue, current, newAttrs);

        } else if (isPresent(bindParts[9])) {  // match: (event)
          this._bindEvent(bindParts[9], attrValue, current, newAttrs);
        }
      } else {
        var expr = this._parser.parseInterpolation(attrValue, current.elementDescription);
        if (isPresent(expr)) {
          this._bindPropertyAst(attrName, expr, current, newAttrs);
        }
      }
    });
开发者ID:KenWilliamson,项目名称:Angular2HostedMobileApp,代码行数:42,代码来源:property_binding_parser.ts


示例4:

 _bindProperty(name, expression, current: CompileElement, newAttrs) {
   this._bindPropertyAst(name, this._parser.parseBinding(expression, current.elementDescription),
                         current, newAttrs);
 }
开发者ID:goderbauer,项目名称:angular,代码行数:4,代码来源:property_binding_parser.ts



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


鲜花

握手

雷人

路过

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

请发表评论

全部评论

专题导读
热门推荐
热门话题
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

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

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

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