मुझे एक कक्षा को एक कोणीय घटक में लोड करने में समस्या हुई है। मैं इसे लंबे समय से हल करने की कोशिश कर रहा हूं; मैं भी एक फ़ाइल में यह सब शामिल होने की कोशिश की है। मेरे पास क्या है:
Application.ts
/// <reference path="../typings/angular2/angular2.d.ts" />
import {Component,View,bootstrap,NgFor} from "angular2/angular2";
import {NameService} from "./services/NameService";
@Component({
selector:'my-app',
injectables: [NameService]
})
@View({
template:'<h1>Hi {{name}}</h1>' +
'<p>Friends</p>' +
'<ul>' +
' <li *ng-for="#name of names">{{name}}</li>' +
'</ul>',
directives:[NgFor]
})
class MyAppComponent
{
name:string;
names:Array<string>;
constructor(nameService:NameService)
{
this.name = 'Michal';
this.names = nameService.getNames();
}
}
bootstrap(MyAppComponent);
सेवाओं / NameService.ts
export class NameService {
names: Array<string>;
constructor() {
this.names = ["Alice", "Aarav", "Martín", "Shannon", "Ariana", "Kai"];
}
getNames()
{
return this.names;
}
}
मैं एक त्रुटि संदेश कहता रहता हूँ No provider for NameService
।
क्या कोई मेरे कोड के साथ समस्या को सुलझाने में मेरी मदद कर सकता है?