次の場合、どのようにテストできますか:
response.location.id
定義されていますか?
ありがとうございました
次の場合、どのようにテストできますか:
response.location.id
定義されていますか?
ありがとうございました
if (response && response.location && typeof response.location.id !== "undefined"){
// is defined
}
typeof response.location.id !== "undefined"
残りが定義されていることに依存できない場合は、次のようにします。
response && response.location && typeof response.location.id !== "undefined"
null
それらに依存でき、 、false
または0
定義済みの値として心配する必要がない場合はid
、直接テストしてください(if(response.location.id)
)。