Bakamashine Asked:2025-03-14 04:19:02 +0800 CST2025-03-14 04:19:02 +0800 CST 2025-03-14 04:19:02 +0800 CST 如何从承诺中提取我需要的数据对象? 772 我使用 axios 通过 API 接收数据。如果在函数中输出,那么输出的就是一个对象: 当调用该函数时,一个 Promise 对象被添加到数据变量中,其中包含我需要的对象,但我不知道如何从那里调用它。 以下是代码: async function getData() { try { return await axios.get('http://localhost:8000/first') } catch (error) { console.error(error) } } export default { data() { return { data: getData() } } } javascript 2 个回答 Voted Bakamashine 2025-03-14T04:38:24+08:002025-03-14T04:38:24+08:00 我重新编写了代码,结果,来自承诺的所有对象都被添加到了数据变量中。 export default { data() { return { data: [] } }, async mounted() { await this.getData(); }, methods: { async getData() { try { const response = await axios.get('http://localhost:8000/first'); this.data = response.data; } catch (error) { console.error(error); } } } }
我重新编写了代码,结果,来自承诺的所有对象都被添加到了数据变量中。