Angular 2组件指令不起作用

时间:2016-09-23 10:11:03

标签: javascript angular typescript

我是角度2的初学者,我想让我的第一个应用程序正常工作。我正在使用TypeScript。 我有 app.component.ts ,其中我已经向另一个名为 todos.component 的组件发出了指令,但是我在编译时遇到以下错误:

[0] app/app.component.ts(7,3): error TS2345: Argument of type '{ moduleId: string; selector: string; directives: typeof TodosComponent[]; templateUrl: string; s ...' is not assignable to parameter of type 'Component'.
[0]   Object literal may only specify known properties, and 'directives' does not exist in type 'Component'.

我的代码是这样的:

的index.html

<html>
  <head>
    <title>Angular 2 QuickStart</title>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <link rel="stylesheet" href="styles.css">
    <!-- 1. Load libraries -->
     <!-- Polyfill(s) for older browsers -->
    <script src="node_modules/core-js/client/shim.min.js"></script>
    <script src="node_modules/zone.js/dist/zone.js"></script>
    <script src="node_modules/reflect-metadata/Reflect.js"></script>
    <script src="node_modules/systemjs/dist/system.src.js"></script>
    <!-- 2. Configure SystemJS -->
    <script src="systemjs.config.js"></script>
    <script>
      System.import('app').catch(function(err){ console.error(err); });
    </script>
  </head>
  <!-- 3. Display the application -->
  <body>
    <app-root>Loading...</app-root>
  </body>
</html>

app.component.ts

import { Component } from '@angular/core';
import {TodosComponent} from './todos/todos.component';

@Component({
  moduleId : module.id,
  selector: 'app-root',
  directives: [TodosComponent],
  templateUrl : 'app.component.html',
  styleUrls : ['app.component.css']
})

export class AppComponent {
    title: string = "Does it work?";
}

app.component.html:

<h1> Angular 2 application</h1>
{{title}}
<app-todos></app-todos>

todos.component.ts

import { Component, OnInit } from '@angular/core';

@Component({
  moduleId : module.id,
  selector: 'app-todos',
  template: '<h2>Todo List</h2>'
})

export class TodosComponent {
    title: string = "You have to do the following today:";    
}

没有该指令,该应用程序正常。 任何帮助,将不胜感激!

提前致谢!

2 个答案:

答案 0 :(得分:51)

app.component.ts中定义directive: [TodosComponent]。 已在RC6中从@Component()装饰器中删除了指令属性。

解决这个问题的方法是:

  1. 创建一个NgModule和
  2. declarations: []数组中声明TodosComponent。
  3. 请参阅此处了解AppModule的示例:

    https://angular.io/docs/ts/latest/tutorial/toh-pt3.html

答案 1 :(得分:3)

当angular2处于beta版本时,

module.id被添加。由于新版本和angular cli支持,不需要添加 moduleId:module.id ,您可以从.ts中删除文件

相关问题