js promise中如何取到[[PromiseValue]] ?

Promise {[[PromiseStatus]]: "resolved", 
        [[PromiseValue]]: "http://dl.stream.qqmusic.qq.com/M8000046HRBd0FvKLm…C380C8F140044403EDC0124&guid=489780640&fromtag=30"
        }

有一个promise,现在取到的值为上述所示, 能不能直接从中取到 promisevalue的url?

该promise由 QQMusic.getSong(1561).then(song => song.url) 获得

这个程序是别人写的,再加上不太了解promise,所以请问下各位大哥可否直接取到?

阅读 42.1k
4 个回答
var a = Promise.resolve('xx')
// Promise {[[PromiseStatus]]: "resolved", [[PromiseValue]]: "xx"}
a.then(function (result) { console.log(result) })

Promise的设计文档中说了,[[PromiseValue]]是个内部变量,外部无法得到,只能在then中获取。

你这是node吗

既然已经处于resolved状态了,直接调用你这个promise的then方法就可以了。这个then方法效果就相当于异步成功后的回调函数。

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题
宣传栏