你用了Promise,或者你调用的函数返回来的是Promise,你需要用then()来接收他们。 callFunc().then(() => { // todo }).catch((err) => { // todo });
node版本不对