Here is some JSON data that I am working with:
{
"_id" : ObjectId("542e65368a1cec1227ae2bac"),
"result" : {
"full" : {
"Array1" : [
"mytext1",
"mytext2"
],
"Array2" : [
"mytext3",
"mytext4"
]
}
}
}
To retrieve everything: OK
console.log("response ", response);
To get the _id value: OK
console.log("_id ", response._id);
However, I am having trouble accessing mytext1, mytext2, and so on...
How can I proceed using angularjs?
Thank you for your assistance!