编程语言
首页 > 编程语言> > javascript – 从Angular2中的JSON文件中获取特定列

javascript – 从Angular2中的JSON文件中获取特定列

作者:互联网

现在,当我必须使用在线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>

任何帮助都是极好的

解决方法:

您需要使用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>

标签:angular6,javascript,angular,typescript,json
来源: https://codeday.me/bug/20190731/1587042.html