Watcher 简单输入
编辑Watcher 简单输入
编辑使用 simple
输入可以在监视器触发时将静态数据加载到执行上下文中。这使您可以集中存储数据并使用模板引用它。
您可以将静态数据定义为字符串 (str
)、数值 (num
) 或对象 (obj
)。
"input" : { "simple" : { "str" : "val1", "num" : 23, "obj" : { "str" : "val2" } } }
例如,以下监视器使用 simple
输入设置每日提醒电子邮件的收件人姓名。
{ "trigger" : { "schedule" : { "daily" : { "at" : "noon" } } }, "input" : { "simple" : { "name" : "John" } }, "actions" : { "reminder_email" : { "email" : { "to" : "[email protected]", "subject" : "Reminder", "body" : "Dear {{ctx.payload.name}}, by the time you read these lines, I'll be gone" } } } }