默认情况下,我的选择参数允许我在选项中选择值。要在场景中输入前一个应用程序的 ID,我必须手动单击“地图”按钮。如何默认开启参数的地图模式? 截屏
问问题
56 次
1 回答
0
只需将行添加"mode": "edit"
到您的select
对象,如下所示:
{
"name": "currencyId",
"type": "select",
"label": "Currency",
"options": "rpc://listCurrencies",
"required": true,
"mode": "edit"
}
这将map
默认打开按钮。
Integromat Best Practices 文档描述了应该和不应该使用此设置的情况。
于 2020-09-22T13:19:01.527 回答