Received response:
data [4] { {
_id:"1" description:"desc" languageId:"5" title:"title1" } { [2]:
_id:"2" description:"desc1" languageId:"4" title:"title2" } { [3]:
_id:"3" description:"desc3" languageId:"4" title:"title3" } [4]:
_id:"4" description:"desc4" languageId:"4" title:"title4" } }
Now, I need to separate it like this:
{
[0]:Object
description:"desc"
title:"ttitle"
description1:"desc1"
title1:"title2"
}
{
[1]:Object
description:"desc3"
title:"ttitle"
description1:"desc4"
title1:"title2"
}
This task involves AngularJS. Any assistance would be greatly appreciated. I have attempted using push and merge methods. Thank you in advance for your help.