0
我有以下JSON對象,這是loopback
模型(分類)的結果,與另一個模型(標籤)的關係。訪問包含的對象
我的調用來獲取分類爲:
modClassification.findOne({
where: { id: classificationid },
include: 'labels' },
function(err, classification){ ...
而這個返回分類的東西,如
{ id: 'b01',
title: 'population',
country_id: 1,
labels:
[ { column_id: 'b1',
classification_id: 'b01',
classification_title: 'population',
dsporder: 1,
label: 'Total_Persons_Males',
country_id: 1,
id: 1 },
{ column_id: 'b2',
classification_id: 'b01',
classification_title: 'population',
dsporder: 2,
label: 'Total_Persons_Females',
country_id: 1,
id: 2 } ] }
這正是我所期望的。
我現在需要遍歷標籤並訪問它的屬性,但這是我卡住的地方。
classification.labels[0] = undefined..
我試過循環,每一個,無論我可以在網上找到,但似乎無法得到每個標籤的屬性。
有人能告訴我我做錯了什麼/需要做什麼?
感謝
正是我失蹤的!感謝Brian! – Jason