简单的Dart Web组件不起作用

时间:2013-06-18 00:15:23

标签: dart dart-webui dartium

简短版本:第一个链接中的自定义Web组件示例对我不起作用。为什么不?我在Dartium中运行它。

长版: 我将来自thisthis tutorial Dart Web UI示例复制并粘贴到Dart编辑器中并尝试运行它。页面上没有显示任何内容。我之前使用过dart而不是web组件,所以我注意到这段代码与我编写的其他代码之间的区别在于没有<script src="packages/browser/dart.js"></script>,所以我在底部添加了它。现在我收到了错误:

Internal error: Dart_Invoke: did not find top-level function 'main'.

我在print函数中放了一个main()语句,并且在错误之前打印了文本,这很奇怪。我猜测并尝试在自定义组件中的main() {}标记内添加<script>。也就是说,脚本标记看起来像:

<script type="application/dart">
  import 'package:web_ui/web_ui.dart';

  main() {print("in main in component");}
  class CounterComponent extends WebComponent {
    int count = 0;
    void increment() { count++; }
  }
</script>

现在该错误消失了,两个打印语句都被打印出来,但没有任何反应。

以下是为方便起见的原始教程代码:

<!DOCTYPE html>
<!--
Copyright (c) 2012, the Dart project authors.  Please see the AUTHORS file
for details. All rights reserved. Use of this source code is governed by a
BSD-style license that can be found in the LICENSE file.
-->
<html lang="en">
<head>
  <meta charset="utf-8">
  <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
  <link rel="stylesheet"
    href="//cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/2.3.1/css/bootstrap.css">
</head>
<body>
  <element name="click-counter" constructor="CounterComponent" extends="div">
    <template>
      <button on-click="increment()">Click me</button>
      <span>(click count: {{count}})</span>
    </template>
    <script type="application/dart">
      import 'package:web_ui/web_ui.dart';

      class CounterComponent extends WebComponent {
        int count = 0;
        void increment() { count++; }
      }
    </script>
  </element>
  <div class="well">
    <div is="click-counter"></div>
  </div>
  <script type="application/dart">
    main(){}
  </script>
</body>
</html>

1 个答案:

答案 0 :(得分:2)

Web UI应用程序需要“构建”(通常通过项目根目录中名为build.dart的脚本see this article获取更多详细信息)。

如果我转到Dart编辑器,使用向导创建一个新的测试项目并选择 Web项目(使用web_ui库)选项,这将创建包含构建脚本的样板。

打开html文件并粘贴github教程中的代码,替换已存在的内容。保存文件时,将调用build.dart,将构建版本输出到/ web / out /

点击运行按钮,Dart编辑器将在Dartium中打开应用程序(它知道将/out/添加到URL)。