例如我有路线:
app.get('/', function(req, res){res.sendFile('C:/Users/.../index.html');});
路由接收数据时如何通知frondEnd?我想在frondEnd上显示系统收到的数据。
答案 0 :(得分:0)
我会使用connect-flash中间件。
req.flash('success', 'File sent!');
或
req.flash('error', 'Something went terribly wrong!');