默认情况下,我的select参数使我可以在选项中选择值。要从场景中的上一个应用程序输入ID,我必须手动单击“地图”按钮。默认情况下如何打开参数的映射模式? Screenshot
答案 0 :(得分:0)
只需将"mode": "edit"
行添加到select
对象中,就像这样:
{
"name": "currencyId",
"type": "select",
"label": "Currency",
"options": "rpc://listCurrencies",
"required": true,
"mode": "edit"
}
默认情况下,这将打开map
按钮。
Integromat Best Practices docs描述了应该和不应该使用此设置的情况。