标签: javascript asynchronous export
我想导出一个由异步函数填充的对象,但是由于该函数是异步的,因此它会在填充对象之前就将其导出。
let map = {}; async function which populates the map; module.exports.state = map;
我确定该函数会在导入文件中调用地图之前对其进行填充。那么我的方法应该是什么! 而我得到的是空物体。