现在当我不得不使用在线JSON文件时,我正在Angular2项目上工作。我使用了http.get
,但是我得到了所有文件,我只想要第二列和第三列first_name和last_name。
这是JSON文件> http://alexgr.ro/ehealth/patients.json
这是我的代码
我要显示日期的admin1.component.ts
import { Component } from '@angular/core';
import { UserService } from '../services/user.service';
@Component({
moduleId: module.id,
selector: 'admin1',
templateUrl: `admin1.component.html`,
})
export class Admin1Component {
enable: boolean;
_profile: {}
constructor(private userService: UserService) {
this.enable = false;
}
loadUser() {
this.userService.getUser().subscribe(data => this._profile = data);
this.enable = true;
}
}
我的user.service.ts
import { Injectable } from '@angular/core';
import { Http, Response } from '@angular/http';
import 'rxjs/add/operator/map';
@Injectable()
export class UserService {
constructor (private http: Http) {}
getUser() {
return this.http.get('http://alexgr.ro/ehealth/patients.json')
.map((res:Response) => res.json());
}
}
和我的admin1.component.html
<div>
<button (click)="loadUser()">Load User</button>
<div *ngIf="enable">
{{ _profile | json }}
</div>
任何帮助都会很棒
答案 0 :(得分:3)
您需要使用ngFor来遍历项目,
<div>
<button (click)="loadUser()">Load User</button>
<div *ngIf="enable">
<ul>
<li *ngFor="let pro of _profile ">
<h1> {{ pro.first_name}} </h1>
<h1> {{ pro.last_name}} </h1>
</li>
</ul>
</div>
答案 1 :(得分:2)
您需要像这样遍历数组-
<div *ngFor='let profile of _profile'>
{{ profile.first_name }} {{ profile.last_name }}
</div>
当前,您正在使用json
管道,该管道仅将整个数据打印到DOM中。
答案 2 :(得分:1)
<div>
<button (click)="loadUser()">Load User</button>
<div *ngIf="enable">
<div *ngFor="let profile of _profile "
{{ profile | json }}
</div>
除了上述答案外,您还可以将Json pipe
与ngFor
结合使用。