已不再支援此瀏覽器。
請升級至 Microsoft Edge,以利用最新功能、安全性更新和技術支援。
針對每個問題選擇最佳回答。
要使用 Express 建構 Web 應用程式,您需要的步驟為何?
具現化應用程式、設定路由、設定中介軟體、設定錯誤處理常式、接聽伺服器
具現化應用程式、接聽伺服器
具現化應用程式、設定路由、接聽伺服器
具現化應用程式、設定路由、設定中介軟體、接聽伺服器
從 Express 應用程式傳送 JSON 回應的慣用方式為何?
在回應物件上呼叫 res.json({ content: '' }) 呼叫 json() 協助程式方法
res.json({ content: '' })
json()
呼叫 res.send({ content: '' })
res.send({ content: '' })
呼叫 res.send(JSON.stringify({ content: '' }))
res.send(JSON.stringify({ content: '' }))
使用下列任何方式:res.type('json')、res.type('application/json')、res.contentType('application/json')、res.format({ 'application/json': function() { res.send({}) } })
res.type('json')
res.type('application/json')
res.contentType('application/json')
res.format({ 'application/json': function() { res.send({}) } })
如何設定 Express 以處理包含 JSON 資料的 POST 要求?
使用 app.post(<route>, () =>{}) 中的 post 方法註冊路由,從 req.body 物件讀取
app.post(<route>, () =>{})
post
req.body
設定本文剖析中介軟體,在 app.post(<route>, () =>{}) 中使用 post 方法註冊路由,從 req.data 物件讀取
req.data
在頂端呼叫 app.use(bodyParser.json()),使用 app.post(<route>, () =>{}) 中的 post 方法註冊路由,從 req.body 物件讀取
app.use(bodyParser.json())
在頂端呼叫 app.use(bodyParser.urlencoded({ extended: false })),使用 app.post(<route>, () =>{}) 中的 post 方法註冊路由,從 req.body 物件讀取
app.use(bodyParser.urlencoded({ extended: false }))
您必須先回答所有問題,才能檢查進度。
此頁面對您有幫助嗎?