I have two file json like this :

[
    { 
       "IdPers": "119",
       "Sex": "F",
       "age": "30"
    }]

and

[
    {
        "IdPers": "119",
        "DescRuol": "Membro"
    }]

How can I create a single table in angularjs like this:

{ 
    "IdPers": "119",
    "Sex": "F",
    "age": "30"
    "DescRuol": "Membro"
plunker: http://plnkr.co/edit/DLEV9zyhIbmWP0nx2sdc?p=catalogue

I want to create a single table with the two json file where the field 
"descRuol" is beside the person with the same Id. (I'm new to angularjs :) )

-- 
You received this message because you are subscribed to the Google Groups 
"AngularJS" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/angular.
For more options, visit https://groups.google.com/d/optout.

Reply via email to