(http: HttpClient)
| 28 | people: Person[] = []; |
| 29 | |
| 30 | constructor(http: HttpClient) { |
| 31 | const peopleUrl = new URL('./people.json', window.location.href).toString(); |
| 32 | |
| 33 | http.jsonp(peopleUrl, 'callback').subscribe((res: unknown) => { |
| 34 | this.people = res as Person[]; |
| 35 | }); |
| 36 | } |
| 37 | } |