1.多层嵌套对象得取值。
let obj ={
core:{
sys_model:55
},
detector:{
conv:11,
gap_width:15
}
}
取值
obj.core.sys_model ==>55
2.多层嵌套对象得赋值
let obj ={
core:{
sys_model:55
},
detector:{
conv:11,
gap_width:15
}
}
obj.core.sys_model = 55 //直接赋值
3.如果要修改得参数过多,且不知道确切的目标的话,我们不能直接修改
let obj ={
core:{
sys_model:55
},
detector:{
conv:11,
gap_width:15
}
}
我们要修改 sys_model 和 gap_width这两个值,需要obj.core.sys_model 和obj.detector.gap_width这两个得
所在的索引位置然后进行替换。
4.用reduce方法来找到对应的索引位置
path:目标位置
value:目标值
obj:目标
function editFn(path, value, obj) {
const arr = path.split('.')
const len = arr.length - 1
arr.reduce((cur, key, index) => {
if (!(cur[key]))
throw `${key} 不存在!`
if (index === len) {
cur[key] = value
}
return cur[key]
}, obj)
}
editFn('core.sys_model','666', obj);
利用reduce方法一层层的向下找。