Promise then then没有产生依赖关系效果?
像下面这样写两个互相依赖的ajax操作,refreshStatus函数内部没有拿到getDesktopList的返回结果:
var promise = Promise.resolve()
promise
.then(this.getDesktopList())
.then(this.refreshStatus())
.catch(function() {})
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
this.getDesktopList()也要返回promise对象哦。
then 处理后要将 promise return 出来才能下一步继续 then
this.getDesktopList()这个方法也要return 噢 不然不是promise对象不能继续then下去