Success (2xx)
HTTP 204 — 204 No Content
The server has successfully fulfilled the request and that there is no additional content to send in the response payload body. (Sunucu isteği başarıyla tamamladı ancak geri dönecek herhangi bir gövde verisi (payload) bulunmuyor (DELETE istekleri).)
Yaygın Nedenler / Common Causes
- •Successful resource deletion or OPTIONS pre-flight checks.
Spesifikasyon & Kategori
Status Code:204
Category:Success (2xx)
RFC Standard:RFC 9110 / HTTP/1.1 & HTTP/2
Nasıl Düzeltilir / Practical Code Solutions
Express 204 response
Send status 204 without body content.
res.status(204).send();
Diğer Popüler HTTP Durum Kodları
Frequently Asked Questions
Common Questions About HTTP 204 to RFC Standard
Everything you need to know regarding AST transformations, typing rules, and browser security.
The server has successfully fulfilled the request and that there is no additional content to send in the response payload body. In Turkish: Sunucu isteği başarıyla tamamladı ancak geri dönecek herhangi bir gövde verisi (payload) bulunmuyor (DELETE istekleri).