koa status 204的問題

當設置ctx.body=undefined時,ctx.status會自動設置爲204,即使ctx.body再次賦值時這個值也不會變

ctx.body = undefined;
console.log(ctx.status); // 204
ctx.body = 'success';
console.log(ctx.status); // 204

結果這個請求沒有響應數據

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章