盐城哪家做网站的正规,试描述一下网站建设的基本流程图,全网推广平台哪家好,网站建设石家庄在node-red中输出当前时间#xff0c;并指定时区为北京时间#xff0c;时间格式为#xff1a;YYYY-MM-DD HH:mm:ss
可以使用moment.js库#xff0c;也可以自行写一个function#xff0c;介绍一下使用自定义function的方法。
var now new Date();
var formattedDate …在node-red中输出当前时间并指定时区为北京时间时间格式为YYYY-MM-DD HH:mm:ss
可以使用moment.js库也可以自行写一个function介绍一下使用自定义function的方法。
var now new Date();
var formattedDate now.toLocaleString(zh-CN, {timeZone: Asia/Shanghai,hour12: false,year: numeric,month: 2-digit,day: 2-digit,hour: 2-digit,minute: 2-digit,second: 2-digit,
});
formattedDate formattedDate.replace(/\//g, -);
msg.payloadformattedDate;
return msg;