如何在自定义 Integromat 应用程序中默认打开参数的 "map" 按钮?
How to make the parameter's "map" button turned on by default in custom Integromat app?
默认情况下,我的 select 参数允许我在选项中选择值。要在场景中输入前一个应用程序的 ID,我必须手动单击 'map' 按钮。参数的map模式怎么默认开启?
Screenshot
只需将行 "mode": "edit"
添加到您的 select
对象,如下所示:
{
"name": "currencyId",
"type": "select",
"label": "Currency",
"options": "rpc://listCurrencies",
"required": true,
"mode": "edit"
}
这将默认打开 map
按钮。
Integromat Best Practices docs 描述了应该和不应该使用此设置的情况。
默认情况下,我的 select 参数允许我在选项中选择值。要在场景中输入前一个应用程序的 ID,我必须手动单击 'map' 按钮。参数的map模式怎么默认开启? Screenshot
只需将行 "mode": "edit"
添加到您的 select
对象,如下所示:
{
"name": "currencyId",
"type": "select",
"label": "Currency",
"options": "rpc://listCurrencies",
"required": true,
"mode": "edit"
}
这将默认打开 map
按钮。
Integromat Best Practices docs 描述了应该和不应该使用此设置的情况。