12 2020 档案
nodejs的定时任务node-schedule
摘要:const schedule = require("node-schedule"); 每5分钟执行一次:= */5 * * * * //5分钟查询一次价格变化* * * * * * schedule.scheduleJob('*/5 * * * *', () => { //todo }); 每几小时 阅读全文
posted @ 2020-12-30 10:38 可乐冒泡泡丶 阅读(786) 评论(0) 推荐(0)
nodejs的https请求
摘要:使用axios请求时,报错:`unable to verify the first certificate` 找了几个解决办法 发现都不行,就使用request进行请求,发现还是“unable to verify the first certificate”, 根据 https://www.redd 阅读全文
posted @ 2020-12-24 16:55 可乐冒泡泡丶 阅读(1454) 评论(0) 推荐(0)