我有这个对象:
const test = {
"/test2": {
"path": "/test",
"items": [{
"path": "/test",
"method": "GET",
}, {
"path": "/test",
"method": "PUT",
}]
},
"/test": {
"path": "/test2",
"items": [{
"path": "/test2",
"method": "GET",
}]
}
}
而且我想删除path每个对象内部的嵌套元素,以便最终获得类似以下内容的内容:
const test = {
"/test": {
"path": "/test",
"items": [{
"method": "GET",
}, {
"method": "PUT",
}]
},
"/test2": {
"path": "/test2",
"items": [{
"method": "GET",
}]
}
}
一只萌萌小番薯
桃花长相依
相关分类