我收到错误
无法读取未定义的属性“帐单日期”
这里的分期付款未定义
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
}
路径长度/键可以变化。
代码必须经过优化和通用。