微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

基于Integromat应用程序的连接参数的输入字段帮助消息

如何解决基于Integromat应用程序的连接参数的输入字段帮助消息

我想生成一个帮助指令,其文本取决于连接参数。尝试使用大括号表达式不起作用。

# TYPE  DATABASE        USER            ADDRESS                 METHOD

# "local" is for Unix domain socket connections only
local   all             all                                     trust
# IPv4 local connections:
host    all             all             127.0.0.1/32            trust
# IPv6 local connections:
host    all             all             ::1/128                 trust
# Allow replication connections from localhost,by a user with the
# replication privilege.
local   replication     all                                     trust
host    replication     all             127.0.0.1/32            trust
host    replication     all             ::1/128                 trust

这怎么办?

解决方法

不可能像您尝试的那样直接进行操作,但是您可以使用RPC

介绍如何使用RPC:

  • 将模块的适用参数设置为:
"rpc://rpcGetInputParams"
  • 使用名称​​ rpcGetInputParams
  • 创建 RPC
  • 将RPC的通信设置为:
{
    "response": {
        "output": [
            {
                "type": "text","label":"Relative URL","name":"URL","help":"Enter a path relative to `{{connection.workspaceUrl}}`.",}
        ]
    }
}

(可以在不调用第三方服务的情况下调用RPC。更多信息here。)

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。