简体   繁体   中英

Angular Typescript Map to JSON

How can I use JSON.stringify with a Typescript Map. The presumption is the Map keys are all strings.

In this example, the console output is an empty {}

const myMap = new Map<string, Employee>();
myMap.set('employee1', new Employee());
myMap.set('employee2', new Employee());
myMap.set('employee3', new Employee());

console.log('myMap', JSON.stringify(myMap));

this way you can stringify the Map value

 JSON.stringify([...myMap])

and if you want to convert the value back to Map

 let obj = JSON.parse(stringifyValue)
 let myMap = new Map();
 for (let k of Object.keys(obj)) {
   myMap.set(k, obj[k]);
 }

check this Converting ES6 Maps to and from JSON

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM