希望通过本次的入门实例的项目,让使用者了解Node-Red中的function模块的使用。
// Create a Date object from the payload
var date = new Date(msg.payload);
// Change the payload to be a formatted Date string
msg.payload = date.toString();
// Return the message so it can be sent on
return msg;
通过鼠标将三个节点依次连接起来。
点击部署按钮后,相应的流程将自动进行部署。
在流程界面,点击时间戳的出发按钮,即可出发inject模块的输出。
此时,在调试窗口,可以看到转换好的日期时间数据。