1
下面是從服務器的JSON我只想打印名字形式的客戶名單如何在句柄中顯示數組json中的數據?
var PatientList = [{
"Customer": [{
"phone": 1234567890,
"name": "customer"
}],
"Patients": [{
"age": null,
"relationship": null,
"id": 5,
"weight": null,
"name": "customer"
}],
"Lead": [{
"source": 1,
"id": 3,
"service": 3
}]
}];
這不是工作 – xxCodexx