//msp转object
let obj= Object.create(null);
for (let[k,v] of map) {
    obj[k] = v;
}
//object转json
JSON.stringify(obj);