前端接收後端返回的map

唏嘘-發表於2024-07-01

1、返回的物件介面

const mapObj = { “apple": ‘蘋果’, ”banana“: ‘香蕉’ };

2、轉換為ES6 map物件

const map = new Map(Object.entries(mapObj));

3、訪問

map.get('apple');

相關文章