当我调用一个返回Promise的函数时,我必须在promise上使用.then()
。
离。 somefunc()返回一个promise。我可以somefunc();
或我必须做
somefunc().then(
function(){
},
function(){
})
同样,如果我使用.then()
,我是否必须指定resolve
和reject
函数,或者我可以忽略reject
。
离。
somefunc().then(
function(){
})
我担心的可能是记忆等泄漏。