I have an AngularJS app that I am converting to use js-data. If I have a REST interface that returns a JSON object in this format
{
data: {
id: 1,
name: Test,
dept: 2
},
related: {
DeptList: [
{ Id: 1, Name: Dept1 },
{ Id: 2, Name: Dept2 },
{ Id: 3, Name: Dept3 }
]
}
}
how do I go about extracting related.DeptList and injecting it into js-data? I have a deserialize function that can return the data object, but can't see how to extract the related data.
In JSData 2.x, one approach is to iterate over the
relationList
field of theResource
passed todeserialize
, and move relations from yourrelated
field over into their expected position.Here is a plunker that demonstrates: https://plnkr.co/edit/suesxw?p=preview
The code in that plunker is pretty general, but there probably some missed edge cases and improvements that can be made to better fit your use case.
Here is a slightly different example based on the new JSData v3 beta: https://plnkr.co/edit/IZJa6jP4cxySlbyRFYF3