service file
import { Observable } from \'rxjs/Rx\'; import { Http,Response} from \'@angular/http\'; import { Injectable } from \'@angular/core\'; import \'
ngOnInit() { this.videoserv.getvideos().subscribe((response) => { this.videos = response }); }
You should be calling the getvideos() method on the videoserv service. You were missing the (), getvideos is a method not a property.
getvideos()
videoserv
()
getvideos