我想生成一个帮助指令,其文本取决于连接参数。尝试使用大括号表达式不起作用。
{
"type": "text",
"label":"Relative URL",
"name":"url",
"help":"Enter a path relative to `{{connection.workspaceUrl}}`.",
}
如何才能做到这一点?
我想生成一个帮助指令,其文本取决于连接参数。尝试使用大括号表达式不起作用。
{
"type": "text",
"label":"Relative URL",
"name":"url",
"help":"Enter a path relative to `{{connection.workspaceUrl}}`.",
}
如何才能做到这一点?
不可能按照您尝试过的方式直接执行此操作,但您可以为此使用RPC。
RPC使用步骤:
"rpc://rpcGetInputParams"
{
"response": {
"output": [
{
"type": "text",
"label":"Relative URL",
"name":"URL",
"help":"Enter a path relative to `{{connection.workspaceUrl}}`.",
}
]
}
}
(可以在不调用 3rd 方服务的情况下调用 RPC。更多信息在这里。)