从Node.js中的n个值中选择特定值

时间:2019-06-22 18:46:43

标签: node.js firebase dialogflow

我在nodejs中具有此功能,可以从Web搜索API提取Web搜索结果。

function webHandler(agent) {
    const query = agent.parameters.q;
    return unirest.get(`https://contextualwebsearch-websearch-v1.p.rapidapi.com/api/Search/WebSearchAPI?autoCorrect=true&pageNumber=1&pageSize=10&q=${query}&safeSearch=false`)
    .header("X-RapidAPI-Host", "contextualwebsearch-websearch-v1.p.rapidapi.com")
    .header("X-RapidAPI-Key", "samplekeyhere")
    .end(function (result) {
        result.body.value.map(res => {
        console.log(res.description);
     });
    });
  }

它在输出中返回n个值。

例如,输出如下所示:

dialogflow output

现在,我只想显示此输出的前三个值或结果-怎么做?

0 个答案:

没有答案