2

我收到以下错误:

Stack Trace: #0      NoSuchMethodErrorImplementation._throwNew (dart:core-patch:641:3)
#1      init_autogenerated (http://127.0.0.1:3030/C:/dev/CalendarDatePicker/CalendarDatePicker/web/out/CalendarDatePicker.dart:43:26)
#2      main (http://127.0.0.1:3030/C:/dev/CalendarDatePicker/CalendarDatePicker/web/out/CalendarDatePicker.html_bootstrap.dart:7:30)

这是我的视图代码:

<!DOCTYPE html>

<html>
  <head>
    <meta charset="utf-8">
    <title>CalendarDatePicker</title>
    <link rel="stylesheet" href="CalendarDatePicker.css">
  </head>
  <body>
    <element name="calendar" constructor="Calendar" extends="div">
      <template>
        <table>
          <tr>
            <th>Sun</th>
            <th>Mon</th>
            <th>Tue</th>
            <th>Wed</th>
            <th>Thu</th>
            <th>Fri</th>
            <th>Sat</th>
          </tr>
        </table>
      </template>
    </element>
    <div is="calendar"></div>
    <script type="application/dart" src="CalendarDatePicker.dart"></script>
    <script type="text/javascript" src="https://dart.googlecode.com/svn/branches/bleeding_edge/dart/client/dart.js"></script>
  </body>
</html>

这是我的主要脚本:

import 'dart:html';
import 'dart:core';
import 'package:web_ui/web_ui.dart';


void main() {

}

class Calendar extends WebComponent
{

}

此行的自动生成代码失败:

new Calendar.forElement(__e0)
  ..created_autogenerated() //Exception: No such method: 'Calendar.forElement'
  ..created()
  ..composeChildren();
4

2 回答 2

4

您应该更改<element> name它,使其以 开头x-

<element name="x-calendar" constructor="Calendar" extends="div">

<div is="calendar"></div>到:

<x-calendar></x-calendar>

is=或者,如果您愿意,也可以使用语法。

这些是建议的更改,但不能解决问题。这将起作用的方式是,如果

class Calendar extends WebComponent {}

进入<element>自身(作为<template><script>标签) 。

另一种方法是将您的组件代码隔离在一个单独的文件中,并使用正确的语法显式导入它。像这样的东西:

<link rel="components" href="calendar_component.html">

因此,我已将您的应用程序分解为 4 个文件。calendarPicker.html,主 html 文件,如下所示:

<!DOCTYPE html>

<html>
  <head>
    <meta charset="utf-8">
    <title>CalendarDatePicker</title>
    <link rel="stylesheet" href="calendarDatePicker.css">
    <link rel="components" href="calendar_component.html">
  </head>
  <body>
    <x-calendar></x-calendar>

    <script type="application/dart" src="calendarDatePicker.dart"></script>
    <script type="text/javascript" src="https://dart.googlecode.com/svn/branches/bleeding_edge/dart/client/dart.js"></script>
  </body>
</html>

calendarDatePicker.dart非常小:

import 'dart:html';
import 'package:web_ui/web_ui.dart';

void main() {}

您的组件代码 ( calendar_component.dart) 具有以下代码:

<!DOCTYPE html>
<html>
  <body>
    <element name="x-calendar" constructor="CalendarComponent" extends="div">
      <template>
        <table>
          <tr>
            <th>Sun</th>
            <th>Mon</th>
            <th>Tue</th>
            <th>Wed</th>
            <th>Thu</th>
            <th>Fri</th>
            <th>Sat</th>
          </tr>
        </table>
      </template>
      <script type="application/dart" src="calendar_component.dart"></script>
    </element>
  </body>
</html>

随附的 dart 文件 ( calendar_component.dart) 中包含组件类:

import 'package:web_ui/web_ui.dart';

class CalendarComponent extends WebComponent {}

希望这可以帮助。我使用您提供的代码构建了应用程序并复制了错误;然后,我使用此处显示的代码对其进行了重建。它运行没有任何错误。

于 2013-01-07T21:23:05.920 回答
2

正如 Shailen 所说,<element>标签应该包含一个<script>定义日历类型的标签(可能带有 src= 属性)。

更多信息在这里: http ://www.dartlang.org/articles/dart-web-components/#component-declaration

我还提交了错误https://github.com/dart-lang/web-ui/issues/297,因为您不应该收到 noSuchMethod 错误:)

于 2013-01-08T00:52:41.190 回答