JS获取Promise对象里面的值问题

JS获取Promise对象里面的值

1、以下代码返回值为:

	const res = getTaskItems({});
    if (res.code === 0) {
    	this.taskItem = res.data;
    }

2、使用一下代码即可获取data里面的值

  getTaskItems({}).then(res => {
      console.log(res.data);
    })

获取Promise{<pending>}的值

问题

我使用如下代码

let lyric = getLyric(this.$store.state.songId);
console.log(lyric)

获取到的结果:

如果直接console.log(lyric.data),会输出undefined

解决

let lyric = getLyric(this.$store.state.songId);
let a = lyric.then((res)=>{
    console.log(res.data)
});

总结

以上为个人经验,希望能给大家一个参考,也希望大家多多支持。

若文章对您有帮助,帮忙点个赞!

0
-5
发布时间 2023-01-23 18:02:19
0 条回复(回复会通过微信通知作者)
点击加载更多评论
登录 后再进行评论
(微信扫码即可登录,无需注册)