我可能只是盲人之类的,但我真的无法弄清楚为什么我无法访问返回的 $Resource 对象的子对象,该对象检索了一堆 JSON 对象。
Resource
> $resolved: true
> $then: function (b, g) {var j=e(),h=
> data: Object
> 519bc5f6b2427a732be1c360: Object
原始 JSON 如下所示:
{
"data": {
"519bc5f6b2427a732be1c360": {
"id": "519bc5f6b2427a732be1c360",
"planning": {
"id": "519bc5f6b2427a732be1c355"
}
}
}
}
谁能解释我为什么这不起作用:
var training = Training.query()
console.log(training); // returns the entire $Resource
console.log(training.data); // returns: undefined