Quantcast
Channel: CNode:Node.js专业中文社区
Viewing all articles
Browse latest Browse all 14821

为什么这段 Promise.resolve 的 then 不继续执行

$
0
0

直接上代码:

var p = Promise.resolve({
	then: x => {
		console.log('ok')
	}
})

p.then(x=> { console.log('为什么这里不继续执行了?') })

Viewing all articles
Browse latest Browse all 14821

Trending Articles