422

Unprocessable Content

Oficiālais
Semantiskas kļūdas dēļ pieprasījumu nevarēja apstrādāt.

Statusa koda 422 vispārīgs skaidrojums

Šis teksta bloks diemžēl ir pieejams tikai angļu valodā.

The HTTP status code 422 Unprocessable Content is usually returned when the server received the client's request but could not process it due to a semantic error.

This essentially means that the client's request was not understood or accepted by the server because it may have been incomplete or incorrect. A common example of this is when the client attempts to send a form request to the server, but the form field was not filled in correctly.

The server will usually also send back a message in the body of the response giving more details about why the request is unprocessable. It is then up to the client to read and correct this information in order to make a successful request to the server.

HTTP statusa koda 422 specifikācija

422 Unprocessable Content statusa kods nozīmē, ka serveris saprot pieprasījuma vienības satura tipu (tāpēc 415(Unsupported Media Type) statusa kods ir nepiemērots) un pieprasījuma vienības sintakse ir pareiza (tāpēc 400 (Bad Request) statusa kods ir nepiemērots), taču nespēja apstrādāt tajā ietvertos norādījumus. Piemēram, šāds kļūdas stāvoklis var rasties, ja XML pieprasījuma ķermenī ir labi noformēti (t. i., sintaktiski pareizi), bet semantiski kļūdaini XML norādījumi

.

Avots / citāts no: 422 Unprocessable Content HTTP statusa kods ir norādīts 11.2 sadaļā 11.2.

Kā, izmantojot PHP, ievadīt 422 statusa kodu?

Lai tīmekļa lapā norādītu HTTP statusa kodu 422, var izmantot PHP funkciju http_response_code. Sintakse ir šāda: http_response_code(422) (PHP 5 >= 5.4.0, PHP 7, PHP 8)

Pārbaudīt 422 HTTP statusa kodu

Lai klienta pusē varētu attēlot HTTP statusa kodu (šajā gadījumā 422 Unprocessable Content) un citu informāciju, ar F12 ir jāatver izstrādes konsole. Pēc tam dodieties uz cilni "Tīkls". Tagad lapu var atvērt, tīmekļa vietnei (piemērs index.php) jābūt redzamai tīkla cilnē. Tā ir jāizvēlas un pēc tam jāizvēlas sadaļa Herder. Pēc tam lietotājs redzēs šādu rezultātu:

Statusa kods 422 Unprocessable Content
Pārskats
URL: https://http-statuscode.com/errorCodeExample.php?code=422
Statuss: 422 Unprocessable Content
Šie: Network
IP adrese: XX.XX.XX.XX
Statusa kods 422 Unprocessable Content

Kā izveidot savu kļūdas lapu statusa kodam 422

Gan ar Apache, gan NGINX tīmekļa serveriem ir salīdzinoši viegli izveidot savu 422 Unprocessable Content. kļūdas lapu.

Apache Webserver

Tīmekļa serveris "Apache" ir viens no visizplatītākajiem tīmekļa serveriem internetā. Lai "Apache" serverī izveidotu savu 422 Unprocessable Content. kļūdas lapu, šajā failā jāveic šādas izmaiņas.

File: .htaccess
ErrorDocument 422 /errors/422.html

NGINX Webserver

Līdzīgi kā tīmekļa serveris "Apache", arī "NGINX" tiek plaši izmantots internetā. Lai izveidotu savu 422 Unprocessable Content. kļūdas lapu "NGINX" serverī, ir jāveic šādas izmaiņas šajā failā.

File: sites-enabled/default
error_page 422 /422.html;
location = /422.html {
    root /usr/share/nginx/html;
    internal;
}

422 statusa koda saderība ar pārlūkprogrammu

Chrome no data
Edge no data
Firefox no data
Opera no data
Safari no data
Chrome Android no data
Firefox for Android no data
Opera Android no data
Safari on iOS no data
Internet no data
WebView Android no data

Konstantes programmēšanas valodās

http.StatusUnprocessableEntity
Response::HTTP_UNPROCESSABLE_ENTITY
http.HTTPStatus.UNPROCESSABLE_ENTITY
:unprocessable_entity

Izklaidējošas memes par HTTP statusa kodu 422

Autors: Tony Brüser
Autors: Tony Brüser

Tonijs Brūsers ir aizrautīgs tīmekļa izstrādātājs, kurš aizraujas ar HTTP statusa kodiem.

LinkedInGitHub