Angular 2没有提供程序错误

时间:2015-05-14 12:59:33

标签: javascript angular

我正在使用angular 2创建简单的入门应用程序,我正在尝试制作待办事项服务并将他注入我的组件,我收到此错误:

没有TodoService的提供商! (TodoList - > TodoService)

TodoService.ts

export class TodoService {
 todos: Array<Object>
 constructor() {
   this.todos = [];
 }
}

app.ts

/// <reference path="typings/angular2/angular2.d.ts" />

import {Component, View, bootstrap, For, If} from 'angular2/angular2';
import {TodoService} from './TodoService'

@Component({
  selector: 'my-app'
})

@View({
  templateUrl: 'app.html',
  directives: [For, If],
  injectables: [TodoService]
})

class TodoList {
 todos: Array<Object>
  constructor(t: TodoService) {
    this.todos = t.todos
  }

  addTodo(todo) {
    this.todos.push({
      done:false,
      todo: todo.value
    });
  }
}

bootstrap(TodoList);

有什么问题?

2 个答案:

答案 0 :(得分:8)

注射剂是在@Component而非@View

上指定的

你有:

@Component({
  selector: 'my-app'
})

@View({
  templateUrl: 'app.html',
  directives: [For, If],
  injectables: [TodoService]  // moving this line
})

将其更改为:

@Component({
  selector: 'my-app',
  injectables: [TodoService]  // to here
})

@View({
  templateUrl: 'app.html',
  directives: [For, If]
})

这将允许DI将其拾取并将其注入您的组件。

答案 1 :(得分:1)

在最新的Angular版本中,您必须使用提供者而不是注射剂,例如:

@Component({
    selector: 'my-app',
    providers: [TodoService]
})