Dart Polymer条件模板创建完成?

时间:2014-02-04 21:41:33

标签: dart dart-polymer

在实例化条件模板后,我会做一些工作。

像这样:

<polymer-element name="xyz-test">
  <template>
    <template if="{{xyz}}">
          <div class="main">
             <div class="sub1"> </div>
             <div class="sub2"> </div>
          </div>
    </template>
  </template>
  <script type="application/dart" src="my_test.dart"></script>
</polymer-element>

import 'package:polymer/polymer.dart';
import 'dart:html';

@CustomTag('xyz-test"')
class XyzText extends PolymerElement {

  // After the Conditional Templates are created, 
  // I wish to work with the Elements in them.

  DocumentFragment instanceTemplate(Element template) {
    // Is not working for Conditional Templates
  }


  @override
   Node shadowFromTemplate(Element template) {
    // Is not working for Conditional Templates
   }
}

也许有人可以给我任何想法。

非常感谢你。

1 个答案:

答案 0 :(得分:0)

您应该能够在XyzTest类上调用方法(或getter)。

class="{{getClass()}}"