当前位置: 首页 > 知识库问答 >
问题:

如何修复SynTaxError: wait仅在谷歌云视觉中的异步函数中有效[重复]

秦伯寅
2023-03-14

我想使用谷歌云视觉API。我复制了代码,但出现以下错误:SyntaxError:await仅在异步函数中有效。

const vision = require('@google-cloud/vision');

// Creates a client
const client = new vision.ImageAnnotatorClient();

/**
 * TODO(developer): Uncomment the following line before running the sample.
 */
const fileName = '/Tickets/leclerc.jpg';

// Performs text detection on the local file
const [result] = await client.textDetection(fileName);
const detections = result.textAnnotations;
console.log('Text:');
detections.forEach(text => console.log(text));    

有没有办法解决这个问题?

非常感谢

共有1个答案

裴浩歌
2023-03-14

等待方法需要封装到异步函数中,这很容易修复。

const detectLocalFile = async function() {
  const [result] = await client.textDetection(fileName);
  {...}
}
 类似资料: