res.end只能支持两种参数,要么字符串,要么Buffer
res.send可以支持多种参数,比如可以传json对象,Buffer,String,Array
The body parameter can be a Buffer object, a String, an object, or an Array. For example:
res.send()参数可传可不传
res.send()内部自动帮发送更过的相应报文头,比如其中的Content-Type为UTF-8
res.end只能支持两种参数,要么字符串,要么Buffer
res.send可以支持多种参数,比如可以传json对象,Buffer,String,Array
The body parameter can be a Buffer object, a String, an object, or an Array. For example:
res.send()参数可传可不传
res.send()内部自动帮发送更过的相应报文头,比如其中的Content-Type为UTF-8