J'ai créé un service pour Angular 2:
import {Injectable} from "angular2/core";
import {Http} from "angular2/http";
import {TaskModel} from "./tasks.model"
@Injectable()
export class TasksDataService {
tasks:Array<any>;
constructor(http:Http) {
this.tasks = [
new TaskModel("Dishes"),
new TaskModel("Cleaning the garage"),
new TaskModel("Mow the grass")
];
}
getTasks():Array<any> {
return this.tasks;
}
}
Lorsque j'exécute mon programme, le navigateur affiche:
system.src.js:1049 GET http://localhost:3000/angular2/http.js 404 (Not Found)
J'ai recherché des tutoriels et ils incluent angular2/http de la même manière. Quelqu'un voit-il ce qui ne va pas?
Vous devez vérifier que vous incluez le http.dev.js
fichier dans votre fichier HTML principal:
<script src="node_modules/angular2/bundles/angular2-polyfills.js"></script>
<script src="node_modules/systemjs/dist/system.src.js"></script>
<script src="node_modules/rxjs/bundles/Rx.js"></script>
<script src="node_modules/angular2/bundles/angular2.dev.js"></script>
<script src="node_modules/angular2/bundles/router.dev.js"></script>
<script src="node_modules/angular2/bundles/http.dev.js"></script>
Vous devez ensuite ajouter les HTTP_PROVIDERS comme deuxième paramètre de la fonction bootstrap:
import { HTTP_PROVIDERS } from 'angular2/http';
bootstrap(MyMainComponent, [ HTTP_PROVIDERS ]);
J'espère que cela vous aide, Thierry