今日bug记录,忘记加await,返回结果undefined
如果你通过 log(res)
得到的是一个 PromiseResult 对象,而在该对象中确实有一个名为 result
的数组,但是使用 log(res.result)
输出却是 undefined
,可能是因为在 log(res.result)
的执行时机上出现了一些问题。
在处理异步操作时,通常会返回一个 Promise 对象,而不是直接返回结果数据。当你调用接口或异步函数时,会得到一个 Promise 对象,而不是直接的数据结果。这时候,你需要通过 .then()
方法来处理 Promise 对象的结果。
你可以尝试使用以下方式来获取数组内的数据:
// 假设 res 是一个 Promise 对象
res.then((data) => {console.log(data.result); // 这里应该可以输出 result 数组的内容
}).catch((error) => {console.error(error);
});
在这个例子中,我们通过 .then()
方法来获取 Promise 返回的实际数据,并在其中访问 result
数组。这样应该能够正确输出数组内的内容。
自己的代码忘记加await,可能会因为异步,拿不到数据
await insertCartAPI({ skuId, count })const res = await findNewCartListAPI()cartList.value = res.result//console.log(cartList.value);