通常使用response.write
方法向前端返回資料,該方法可呼叫多次,你可以像console.log()
一樣去使用它,返回的資料會被拼接到一起
需要注意的是,必須呼叫response.end
方法結束請求,否則前端會一直處於等待狀態,response.end
方法也可以用來向前端返回資料
const server = http.createServer((request, response) => {
response.write('zhangsan')
response.write('lisi')
response.write('wangwu')
response.end('d')
})
複製程式碼