我正在尝试像这样将 Dart PolymerElements 嵌套在另一个PolymerElement 中。
@CustomTag('test-box')
class Box extends PolymerElement{
@observable List<Child> childs = new List<Child>();
Box.created() : super.created() { }
}
@CustomTag('test-child')
class Child extends PolymerElement{
Child.created() : super.created() { }
}
然后在testbox.html
<link rel="import" href="testchild.html">
<polymer-element name="test-box">
<template>
<div>
<ol name="child-list">
<template repeat="{{child in childs}}">
{{child}}
</template>
</ol>
</div>
</template>
<script type="application/dart" src="testbox.dart"></script>
</polymer-element>
Dart/Polymer 有可能吗?我所有的尝试都失败了。我想处理像类这样的 html 节点。
提前致谢