无法在我的自定义Integromat应用程序中访问响应头数据

时间:2020-09-24 13:22:21

标签: integromat integromat-apps

我需要从响应中提取标头字段的一部分。我使用了debug()函数来查看数据的样子。由于某些原因,此错误总是弹出:

`Cannot read property 'content-disposition' of undefined`

我在做什么错? 调试(数据)返回:

[
  {
    "cache-control": "no-cache, private",
    "content-disposition": "attachment; filename=\"693-200x300.bmp\"",
    "content-type": "image/x-ms-bmp; charset=binary",
    "date": "Wed, 29 Jul 2020 14:12:54 GMT"
  }
]
function getName(data) {
  debug(data);
  if (data && data[0]["content-disposition"])
    return data[0]["content-disposition"].split('"')[1]
  return "function getName input data invalid";
}

0 个答案:

没有答案