基于我的 Integromat 应用程序连接参数的输入字段帮助消息
Input field help message based on connection parameter for my Integromat app
我想生成一个帮助指令,其文本取决于连接参数。尝试使用大括号表达式无效。
{
"type": "text",
"label":"Relative URL",
"name":"url",
"help":"Enter a path relative to `{{connection.workspaceUrl}}`.",
}
如何做到这一点?
无法按照您尝试过的方式直接完成,但您可以使用 RPC。
使用 RPC 的步骤:
- 将模块的可映射参数设置为:
"rpc://rpcGetInputParams"
- 创建 RPC 名称为 rpcGetInputParams
- 将RPC的通信设置为:
{
"response": {
"output": [
{
"type": "text",
"label":"Relative URL",
"name":"URL",
"help":"Enter a path relative to `{{connection.workspaceUrl}}`.",
}
]
}
}
(可以在不调用第 3 方服务的情况下调用 RPC。更多信息 here。)
我想生成一个帮助指令,其文本取决于连接参数。尝试使用大括号表达式无效。
{
"type": "text",
"label":"Relative URL",
"name":"url",
"help":"Enter a path relative to `{{connection.workspaceUrl}}`.",
}
如何做到这一点?
无法按照您尝试过的方式直接完成,但您可以使用 RPC。
使用 RPC 的步骤:
- 将模块的可映射参数设置为:
"rpc://rpcGetInputParams"
- 创建 RPC 名称为 rpcGetInputParams
- 将RPC的通信设置为:
{
"response": {
"output": [
{
"type": "text",
"label":"Relative URL",
"name":"URL",
"help":"Enter a path relative to `{{connection.workspaceUrl}}`.",
}
]
}
}
(可以在不调用第 3 方服务的情况下调用 RPC。更多信息 here。)