-2
下面是代碼:如何處理JavaScript中未定義的JSON數據?
if (data.result.parameters.q === undefined) {
colsole.log('undefined')
}
//I also tried
if (data.result.parameters.q === null) {
// colsole.log('undefined')
// }
在使用null和undefined,但沒有工作的嘗試。
在控制檯中是否出現錯誤?如果鏈中較早的對象之一爲null,則會引發錯誤。否則,你可以'console.log(data.result.parameters.q)'並測試它所吐出的任何信息 – IrkenInvader
'console.log(data.result.parameters.q)'真的沒有定義? –
什麼是「colsole」? –