结果带有异步等待的nodejs等待显示Promise待处理

时间:2019-09-17 11:27:03

标签: node.js promise async-await ibm-watson

我对IBM的文本具有语音转换功能,可将mp3转换为文本。当我console.log时,函数结果的输出如下所示:

result Promise { <pending> }

这就是我所做的。有什么建议吗?

let finalResult = speechToText.recognize(params)
  .then(result => {
    JSON.stringify(result, null, 2);
  })
  .catch(err => {
    err;
  });

console.log('finalResult',finalResult)

0 个答案:

没有答案