如何使用 JavaScript 将对象的对象转换为对象数组的对象?
javascriptweb developmentobject oriented programming
要将对象的对象转换为对象数组的对象,请使用 Object.fromEntries() 的概念以及 map()。
示例
const studentDetails = { 'details1': {Name: "John", CountryName: "US"}, 'details2': {Name: "David", CountryName: "AUS"}, 'details3': {Name: "Bob", CountryName: "UK"}, }; console.log( Object.fromEntries(Object.entries(studentDetails).map(([key, value]) => [key, [value]])) );
要运行上述程序,您需要使用以下命令 −
node fileName.js.
这里,文件名是 demo45.js。
输出
这将产生以下输出 −
PS C:\Users\Amit\JavaScript-code> node demo45.js { details1: [ { Name: 'John', CountryName: 'US' } ], details2: [ { Name: 'David', CountryName: 'AUS' } ], details3: [ { Name: 'Bob', CountryName: 'UK' } ] }