{"PatientPastMedicalHistoryGetResult":{"PastMedicalHistory":[]}}
PastMedicalHistory数组是NUll,没有值。我怎么检查呢。
答案 0 :(得分:1)
if (response.PatientPastMedicalHistoryGetResult.PastMedicalHistory.length == 0) {
}
这不是空的。这是一个空数组。
答案 1 :(得分:1)
如果您的回复为空,请尝试
var data = {"PatientPastMedicalHistoryGetResult":{"PastMedicalHistory":[]}};
for (member in data) {
if (data[member] != null)
// Do work here
}