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.
当服务器启动该手表并开始约会时,我启动了 cron 作业,但我想通过响应向我的客户端发送数据,这在 cron 作业中是否可行
我正在使用 NodeJS 和风帆
crons.schedule("* * * * * *", async (req, res) => { res.send("appointment started") }
不,您不能这样做,因为您无权访问 req & res 对象
正如@Yuri Vorobev 所提到的,Sails 中的 CRON 作业无权访问 req 和 res 对象。但是您可以做的是在 CRON 作业中调用控制器方法/操作并定期发送响应。