如何转换json中的字段名
let test = [ {id: ‘testId’, text: ‘testText’}, {id: ‘testId1’, text: ‘testText1’}, {id: ‘testId2’, text: ‘testText2’} ]
let test_new = [ {id_new: ‘testId’, text_new: ‘testText’}, {id_new: ‘testId1’, text_new: ‘testText1’}, {id_new: ‘testId2’, text_new: ‘testText2’} ]
请教下如何快捷的将test字段转换成test_new 中的字段呢、现在用的比较笨的办法,用一个中间变量,forEach循环赋值,有没有是比较好的方法或者第三方插件支持呢
11 回复