如何用空格写参数名?自定义Integromat应用

问题描述

Api向我发送了一个带有“ Joined at”参数的响应,由于空格“”,我无法执行任何操作,但是该参数对于我的Integromat应用程序中的一个触发器至关重要。

"trigger": {
    "id": "{{item.id}}","date": "{{item.attributes.Joined at}}","type": "date","order": "desc"
}

Response example

解决方法

您可以使用反引号来检索集合属性,如docs中所述。
该表达式将如下所示:"date": "{{item.attributes.`Joined at`}}"