Angular2 显示数据示例不起作用

Angular2 displaying data example not working

我正在学习 https://angular.io/docs/js/latest/guide/displaying-data.html 中有关 Angular2 的教程,但它对我不起作用。让我知道我在这里缺少什么。

顺便说一句 - 我只使用 ES5。

代码在index.html-

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Angular2 Demo</title>

    <!-- 1. Load libraries -->
    <!-- IE required polyfill -->
    <script src="node_modules/es6-shim/es6-shim.min.js"></script>

    <script src="node_modules/angular2/bundles/angular2-polyfills.js"></script>
    <script src="node_modules/rxjs/bundles/Rx.umd.js"></script>
    <script src="node_modules/angular2/bundles/angular2-all.umd.js"></script>

    <script src="app/component.js"></script>
</head>
<body>

        <display></display>
</body>
</html>

component.js-

function DisplayComponent() {
  this.myName = "Alice";
}
DisplayComponent.annotations = [
  new angular.ComponentAnnotation({
    selector: "display"
  }),
  new angular.ViewAnnotation({
    template:
       '<p>My name: {{ myName }}</p>'
  })
];

如果我在浏览器中 运行 idex.html 会收到错误消息 -

ReferenceError: angular 未定义

示例似乎不正确...您应该使用 ComponentMetadataViewMetadata 对象:

function DisplayComponent() {
  this.myName = "Alice";
}

DisplayComponent.annotations = [
  new ng.core.ComponentMetadata({
    selector: "display"
  }),
  new ng.core.ViewMetadata({
    template:
       '<p>My name: {{ myName }}</p>'
  })
];

有关详细信息,请参阅此插件:https://plnkr.co/edit/biMKXl1WXsgTCxbjwcme?p=preview

您还可以使用 ng.core.Component 对象,如下所述:

var DisplayComponent = ng.core.
  Component({
    selector: "display"
  })
  .View({
    template:
      '<p>My name: {{ myName }}</p>'
  })
  .Class({
    constructor: function() {
      this.myName = "Alice";
    }
  });

看到这个 plunkr:https://plnkr.co/edit/73Hirx9aqnITZCPonltX?p=preview

这个link可以给你一些提示: