大家好我想在一个 ngFor
中打印两个JSON数组doctorfamilydob: any;
getchilddob=[];
这是我的ts
this.http.get( this.url )
.map(res => res.json())
.subscribe(data => {
this.doctorfamilydob = data;
for(let i=0; i<this.doctorfamilydob.length;i++)
{
let chdob=this.doctorfamilydob[i]._meta_child_details;
for(let j=0; j<chdob.length;j++)
{
this.getchilddob.push({
"childname": chdob[j].child_name,
"childdob":chdob[j].child_dob,
})
alert(JSON.stringify(this.getchilddob))
}
}});
我有两个阵列第一个是doctorfamilydob:any;第二个是 getchilddob = [];
我想在一个ng中打印两个阵列。请帮帮我。