如何从json对象提取特定字段并将其存储在node.js中的字符串中

时间:2020-10-14 10:49:06

标签: node.js json azure

因此,我正在使用Azure API,并在JSON对象中收到响应。 我想提取"text"键并将值存储在字符串中。 在这个例子中,结果应该是 Hello World!

这是现在的输出。

{
 "language": "en",
 "textAngle": 0.02617993877991553,
 "orientation": "Up",
 "regions": [
  {
   "boundingBox": "169,81,846,138",
   "lines": [
    {
     "boundingBox": "169,81,846,138",
     "words": [
      {
       "boundingBox": "169,81,348,126",
       "text": "Hello"
      },
      {
       "boundingBox": "570,92,445,127",
       "text": "World!"
      }
     ]
    }
   ]
  }
 ]
}

如何仅提取节点js中的文本? 预先谢谢你

1 个答案:

答案 0 :(得分:1)

所以我想通了。这是我所做的。 您必须使用嵌套循环来获取它。

BEL