为什么.then()里面有些函数用return,有些不用return呢?有什么区别呢?
为什么.then()里面有些函数用return,有些不用return呢?有什么区别呢?
boy.walkTo(2000, 0.5)
.then(function() {
//暂停走路
boy.stopWalk()
})
.then(function() {
//开门
return openDoor();
})
.then(function() {
//开灯
lamp.bright()
})
.then(function() {
//进商店
return boy.toShop(2000)
}).then(function() {
//出商店
return boy.outShop(2000)
}).then(function() {
//灯暗
lamp.dark()
});