aboutsummaryrefslogtreecommitdiff
path: root/files/bg/web/http/status/200/index.html
diff options
context:
space:
mode:
authorPeter Bengtsson <mail@peterbe.com>2020-12-08 14:41:15 -0500
committerPeter Bengtsson <mail@peterbe.com>2020-12-08 14:41:15 -0500
commit4b1a9203c547c019fc5398082ae19a3f3d4c3efe (patch)
treed4a40e13ceeb9f85479605110a76e7a4d5f3b56b /files/bg/web/http/status/200/index.html
parent33058f2b292b3a581333bdfb21b8f671898c5060 (diff)
downloadtranslated-content-4b1a9203c547c019fc5398082ae19a3f3d4c3efe.tar.gz
translated-content-4b1a9203c547c019fc5398082ae19a3f3d4c3efe.tar.bz2
translated-content-4b1a9203c547c019fc5398082ae19a3f3d4c3efe.zip
initial commit
Diffstat (limited to 'files/bg/web/http/status/200/index.html')
-rw-r--r--files/bg/web/http/status/200/index.html54
1 files changed, 54 insertions, 0 deletions
diff --git a/files/bg/web/http/status/200/index.html b/files/bg/web/http/status/200/index.html
new file mode 100644
index 0000000000..41b493723a
--- /dev/null
+++ b/files/bg/web/http/status/200/index.html
@@ -0,0 +1,54 @@
+---
+title: 200 OK
+slug: Web/HTTP/Status/200
+tags:
+ - HTTP
+ - Код за състояние
+ - Успех
+translation_of: Web/HTTP/Status/200
+---
+<div>{{HTTPSidebar}}</div>
+
+<p>HTTP <strong><code>200 OK</code></strong>  е код за състояние на отговора. Той показва, че заявката ви е успяла. Отговорите със сътояние 200 се кешират по подразбиране.</p>
+
+<p>В зависимост от метода на заявката "успех" означава различни неща:</p>
+
+<ul>
+ <li>{{HTTPMethod("GET")}}: Изходът е донесен в тялото на съобщението.</li>
+ <li>{{HTTPMethod("HEAD")}}: Заглавките са в тялото на съобщението.</li>
+ <li>{{HTTPMethod("POST")}}: Изходът е донесен в тялото на съобщението.</li>
+ <li>{{HTTPMethod("TRACE")}}: Тялото на съобщението съдържа съобщението за заявка както е получено от сървъра.</li>
+</ul>
+
+<p>Успешният изходт от {{HTTPMethod("PUT")}} или {{HTTPMethod("DELETE")}} често не е <code>200</code> <code>OK</code>, а {{HTTPStatus("204")}} <code>No Content</code> (или {{HTTPStatus("201")}} <code>Created</code>, когато съдържанието е качено за пръв път).</p>
+
+<h2 id="Състояние">Състояние</h2>
+
+<pre class="syntaxbox">200 OK</pre>
+
+<h2 id="Спецификации">Спецификации</h2>
+
+<table class="standard-table">
+ <tbody>
+ <tr>
+ <th scope="col">Specification</th>
+ <th scope="col">Title</th>
+ </tr>
+ <tr>
+ <td>{{RFC("7231", "200 OK" , "6.3.1")}}</td>
+ <td>Hypertext Transfer Protocol (HTTP/1.1): Semantics and Content</td>
+ </tr>
+ </tbody>
+</table>
+
+<h2 id="Съвместимост">Съвместимост</h2>
+
+<p class="hidden">The compatibility table in this page is generated from structured data. If you'd like to contribute to the data, please check out <a href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> and send us a pull request.</p>
+
+<p>{{Compat("http.status.200")}}</p>
+
+<h2 id="Вижте_също">Вижте също</h2>
+
+<ul>
+ <li><a href="/bg/docs/Web/HTTP/Methods">Методи за заявки в HTTP</a></li>
+</ul>