我已经定义了一个自定义元素,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 的方式查询我的自定义元素?