如何在自定义Integromat应用程序中默认使参数的“地图”按钮处于打开状态?

时间:2020-09-14 09:17:53

标签: integromat integromat-apps

默认情况下,我的select参数使我可以在选项中选择值。要从场景中的上一个应用程序输入ID,我必须手动单击“地图”按钮。默认情况下如何打开参数的映射模式? Screenshot

1 个答案:

答案 0 :(得分:0)

只需将"mode": "edit"行添加到select对象中,就像这样:

{
    "name": "currencyId",
    "type": "select",
    "label": "Currency",
    "options": "rpc://listCurrencies",
    "required": true,
    "mode": "edit"
}

默认情况下,这将打开map按钮。
Integromat Best Practices docs描述了应该和不应该使用此设置的情况。