0
使用hasOwnProperty動態的錯誤「無法讀取屬性」 ...我收到錯誤「未定義」
無法讀取未定義
分期付款的特性‘billingDate’這裏是undefined
response.detailsResponse.installment.billingDate
我想使用hasOwnProperty但以動態的方式,就像我將路徑和對象(檢查對象)傳遞給函數一樣,它會執行以下檢查並返回true或false。
function checkProperty(path, obj){
//assuming path = response.detailsResponse.installment.billingDate
//assuming obj = response [a json/object]
//check if response.detailsResponse exists
//then check if response.detailsResponse.installment exists
//then check if response.detailsResponse.installment.billingDate exists
}
路徑長度/鍵可以變化。
該代碼必須優化和通用。
非常感謝。 –