Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个流程,它从一个函数返回一个变量 outMsg,然后从一个请求节点发送一个 HTTPS POST 请求,我想知道是否可以在函数之后在请求节点中使用该变量,例如:
https://url.com?message= {{outMsg}}
取自 http-request 节点的侧边栏文档
在节点中配置时,URL 属性可以包含 mustache 样式标签。这些允许使用传入消息的值构造 url。例如,如果 url 设置为 example.com/{{topic}},它将自动插入 msg.topic 的值。