我创建了扩展DIV元素的dart web组件。 在DART中,我可以使用以下命令向DOM添加DIV元素:
DivElement div = new DivElement();
document.body.elements.add(div);
我可以使用我的网络组件做同样的事情吗? 什么是正确的语法?
答案 0 :(得分:2)
Web UI规范有一个关于Web组件实例化的部分:
http://www.dartlang.org/articles/dart-web-components/spec.html#instantiation
...在Dart中调用新的FooComponent.forElement(elem)。我们不推荐 使用这种方法因为这个构造函数调用不能被使用 本身 - 它需要几个设置步骤。我们可能有运行时 库,以便将来更容易......