因此,我正在使用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中的文本? 预先谢谢你
答案 0 :(得分:1)
所以我想通了。这是我所做的。 您必须使用嵌套循环来获取它。
BEL