第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

過濾掉 AWS Textract 函數(shù)返回的數(shù)據(jù)

過濾掉 AWS Textract 函數(shù)返回的數(shù)據(jù)

幕布斯7119047 2022-10-08 09:59:39
我提取了 Textract AWS 函數(shù)返回的數(shù)據(jù)。此 Textract 函數(shù)的返回?cái)?shù)據(jù)類型為以下類型:{   "AnalyzeDocumentModelVersion": "string",   "Blocks": [       {          "BlockType": "string",         "ColumnIndex": number,         "ColumnSpan": number,         "Confidence": number,         "EntityTypes": [ "string" ],         "Geometry": {             "BoundingBox": {                "Height": number,               "Left": number,               "Top": number,               "Width": number            },            "Polygon": [                {                   "X": number,                  "Y": number               }            ]         },         "Id": "string",         "Page": number,         "Relationships": [             {                "Ids": [ "string" ],               "Type": "string"            }         ],         "RowIndex": number,         "RowSpan": number,         "SelectionStatus": "string",         "Text": "string"      }   ],   "DocumentMetadata": {       "Pages": number   },   "JobStatus": "string",   "NextToken": "string",   "StatusMessage": "string",   "Warnings": [       {          "ErrorCode": "string",         "Pages": [ number ]      }   ]}我通過以下代碼從這些數(shù)據(jù)中提取了塊:var d = null;...<Some Code Here>...d = data.Blocks;console.log(d);它以 JSON 對(duì)象數(shù)組的形式提供輸出。下面給出了提取文本的示例:[...{ BlockType: 'WORD',    Confidence: 99.7286376953125,    Text: '2000.00',    Geometry: { BoundingBox: [Object], Polygon: [Array] },    Id: '<ID here>',    Page: 1 }, ...]我只想提取文本字段并將其視為唯一的輸出。我該如何開始呢?
查看完整描述

1 回答

?
倚天杖

TA貢獻(xiàn)1828條經(jīng)驗(yàn) 獲得超3個(gè)贊

我可能誤解了您的問題,但如果您需要提取數(shù)據(jù)數(shù)組中每個(gè)對(duì)象的 Text 字段的值,請(qǐng)查看以下示例


const data = [

  {

    BlockType: "WORD",

    Confidence: 99.7286376953125,

    Text: "2000.00",

    Geometry: { BoundingBox: {}, Polygon: [] },

    Id: "<ID here>",

    Page: 1,

  },

];


const output = data.map(({ Text: text }) => text);


console.log(output);


查看完整回答
反對(duì) 回復(fù) 2022-10-08
  • 1 回答
  • 0 關(guān)注
  • 161 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)