Angular Директива 2-х компонентная не работает

Я новичок в angular 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:";    
}

Без директивы приложение работает нормально. Любая помощь будет оценена!

Спасибо заранее!

Ответ 1

В app.component.ts вы определяете directive: [TodosComponent]. Свойство директивы было удалено в RC6 от декоратора @Component().

Решением этого является:

  • создать NgModule и
  • объявляет TodosComponent внутри массива declarations: [].

См. здесь пример AppModule:

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

Ответ 2

module.id был добавлен в принципе, когда angular2 находился в бета-версии. Поскольку с поддержкой новой версии и angular cli не требуется добавлять moduleId: module.id, вы можете удалить из .ts файлов