I am trying to load data from local json file. I have provided the reference as shown below in screen shot. But when i run the app on localhost i get the error: 404 not found.
getMainCategory():Observable<MainCategory>{
return this.http.get("./providers/mainCategory.json")
.map(res=>res<MainCategory[]>(res.json().items))
}
