我用这个代码!用于通过 Microsoft Azure Translator Text 查询翻译。
这条线
console.log(JSON.stringify(body, null, 4));
在控制台中打印输入文本“bonjour”:
[
{
"detectedLanguage": {
"language": "fr",
"score": 1
},
"translations": [
{
"text": "Hello",
"to": "en"
}
]
}
]
我试图通过以这种方式解析结果来获取字符串“Hello”:
console.log(body.translations.text)
我在控制台中得到了这个:
console.log(body.translations.text)
^
TypeError: Cannot read property 'text' of undefined
有任何想法吗 ?
慕无忌1623718
相关分类