如题,目前问题就是,因为 success 回调函数中是闭包状态,只能访问外部数据,而不能给外部数据赋值。
function getSpace(){
wx.getStorage({
key: 'cache_key',
success: (res) => {
// 我想要的数据
result = res.data
// 如何返回出去?
// return result
}
})
// return
// 让函数直接返回 result
}
getSpace()