3

我已经定义了一个自定义元素,chat-view并让它显示在页面上:

<!DOCTYPE html>

<html>
  <head>
    <title>index</title>
     <script src="packages/polymer/boot.js"></script>
    <link rel="import" href="chat_view.html">
  </head>

  <body>   
    <chat-view id="chat">
    </chat-view>

    <script type="application/dart" src="index.dart"></script>
  </body>
</html>

然后我查询聊天视图:

final ChatView chatView = query("#chat");

上一行导致以下异常:

Exception: type 'UnknownElement' is not a subtype of type 'ChatView' of 'chatView'.

有没有办法以获取 ChatView 对象而不是 UnknownElement 的方式查询我的自定义元素?

4

1 回答 1

4

经过一番挖掘,我发现自定义元素实例是通过 UnknownElement 的xtag属性访问的。

final ChatView chatView = query("#chat").xtag;

于 2013-09-02T21:43:38.473 回答