Вам необходимо добавить провайдеров в файл app.component.ts
. Я добавил приведенный ниже фрагмент, и он работает нормально.
import { Component, VERSION } from '@angular/core';
import { AppServiceService } from './app-service.service';
@Component({
selector: 'my-app',
templateUrl: './app.component.html',
styleUrls: [ './app.component.css' ],
providers: [AppServiceService]
})
export class AppComponent {
name = 'Angular ' + VERSION.major;
constructor(ser: AppServiceService) {
this.name = ser.sayHello();
}
}