Angular 4 - HTTP Service 404. JSON file Not Found
问题 I am new in angular, and I am having problem in http service. I tried this.http.get('http://jsonplaceholder.typicode.com/posts/1') as sample data and it works. But when I used this.http.get('src/data/employees.json') it shows me 404 (Not Found) employees.service.ts import { Injectable } from '@angular/core'; import { Http } from '@angular/http'; import 'rxjs/add/operator/map'; @Injectable() export class EmployeesService { constructor(private http: Http) { } getEmployees() { this.http.get('src