如何使用Javascript从语义搜索中访问标题?

问题描述 投票:0回答:1

我正在尝试构建一个网络应用程序,它可以使用自然语言执行语义搜索并返回结果。使用response.data.results,我可以在控制台中的semanticSearch->captions->text下看到标题文本。

console image

但是我无法弄清楚访问该信息的语法是什么。我尝试了response.data.results.semanticSearch.captions[0].text,但这给了我一个错误“TypeError:无法读取未定义的属性(读取'标题')”

如有任何建议,我们将不胜感激。

谢谢! 肯尼斯

javascript search azure-web-app-service semantic-ui
1个回答
0
投票

因此,假设屏幕截图上的 JSON 来自日志

response.data.results
,事实证明这是一个数组。您只需指定索引即可;

const result = response.data.results[0]; // or 1? whichever you need;
console.log(semanticSearch.captions[0].text)

© www.soinside.com 2019 - 2024. All rights reserved.