我是Express.js的初学者,我对这两个关键字感到困惑:res.end()和res.send(). 它们是相同还是不同? res.send()将发送HTTP响应.它的语法是, res.send([body]) body参数可以是Buffer对象,String,对象或Array
它们是相同还是不同?
res.send()将发送HTTP响应.它的语法是,res.send([body])
body参数可以是Buffer对象,String,对象或Array.例如:
res.send(new Buffer('whoop')); res.send({ some: 'json' }); res.send('<p>some html</p>'); res.status(404).send('Sorry, we cannot find that!'); res.status(500).send({ error: 'something blew up' });
有关详细信息,请参阅this.
res.end()将结束响应过程.这个方法实际上来自Node核心,特别是http.ServerResponse的response.end()方法.它用于在没有任何数据的情况下快速结束响应.例如:
res.end(); res.status(404).end();
有关详细信息,请阅读this.