Response对象
Response对象的属性
console.log(res.app===app,req.res===res);
Response对象的方法
res.redirect('/login')
res.sendStatus(404);
res.status(404).send("没有找到该页面");
res.set('Content-type','text/plain;charset=utf-8');
res.sendFile(path.join(__dirname,'public','index.html'));
res.send("Hi Express");
撒打算