如何在单个ngFor中打印两个json数组

时间:2017-12-28 10:55:12

标签: angular ionic2

大家好我想在一个 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中打印两个阵列。请帮帮我。

0 个答案:

没有答案