想访问 JSON body 中的 wins 数据,找不到正确的结果路径?
Want to access wins data in JSON body , can`t find the right path to the result?
我正在为我的 Chainlink 节点开发这个外部适配器。从 RapidAPI 我根据名称字段调用 POST API 调用。这是返回的正文。
在 node.js 中,我想在“数据”数组中检索“胜利”:
> Requester.request(options, customError)
> .then(response => {
>
> response.data.result = Requester.validateResultNumber(response.data,['data', 'performance','wins'])
> callback(response.status, Requester.success(jobRunID, response))
> })
但我得到了 :
AdapterError: TypeError: Cannot read property 'wins' of undefined
我需要写什么路径才能得到我的结果?
找到路径:["data", "0", "performance", "wins"]。
我正在为我的 Chainlink 节点开发这个外部适配器。从 RapidAPI 我根据名称字段调用 POST API 调用。这是返回的正文。
> Requester.request(options, customError)
> .then(response => {
>
> response.data.result = Requester.validateResultNumber(response.data,['data', 'performance','wins'])
> callback(response.status, Requester.success(jobRunID, response))
> })
但我得到了 :
AdapterError: TypeError: Cannot read property 'wins' of undefined
我需要写什么路径才能得到我的结果?
找到路径:["data", "0", "performance", "wins"]。