aboutsummaryrefslogtreecommitdiff
path: root/files/ru/web/http/methods/get
diff options
context:
space:
mode:
authorPeter Bengtsson <mail@peterbe.com>2020-12-08 14:42:52 -0500
committerPeter Bengtsson <mail@peterbe.com>2020-12-08 14:42:52 -0500
commit074785cea106179cb3305637055ab0a009ca74f2 (patch)
treee6ae371cccd642aa2b67f39752a2cdf1fd4eb040 /files/ru/web/http/methods/get
parentda78a9e329e272dedb2400b79a3bdeebff387d47 (diff)
downloadtranslated-content-074785cea106179cb3305637055ab0a009ca74f2.tar.gz
translated-content-074785cea106179cb3305637055ab0a009ca74f2.tar.bz2
translated-content-074785cea106179cb3305637055ab0a009ca74f2.zip
initial commit
Diffstat (limited to 'files/ru/web/http/methods/get')
-rw-r--r--files/ru/web/http/methods/get/index.html75
1 files changed, 75 insertions, 0 deletions
diff --git a/files/ru/web/http/methods/get/index.html b/files/ru/web/http/methods/get/index.html
new file mode 100644
index 0000000000..e2601b1361
--- /dev/null
+++ b/files/ru/web/http/methods/get/index.html
@@ -0,0 +1,75 @@
+---
+title: GET
+slug: Web/HTTP/Methods/GET
+tags:
+ - HTTP
+ - Метод запроса
+ - Справка
+translation_of: Web/HTTP/Methods/GET
+---
+<div>{{HTTPSidebar}}</div>
+
+<p><strong>HTTP-метод <code>GET</code></strong> запрашивает представление указанного ресурса. <code>GET</code>-запросы должны только получать данные.</p>
+
+<table class="properties">
+ <tbody>
+ <tr>
+ <th scope="row">Запрос имеет тело</th>
+ <td>Нет</td>
+ </tr>
+ <tr>
+ <th scope="row">Успешный ответ имеет тело</th>
+ <td>Да</td>
+ </tr>
+ <tr>
+ <th scope="row">{{Glossary("Safe", "Безопасный")}}</th>
+ <td>Да</td>
+ </tr>
+ <tr>
+ <th scope="row">{{Glossary("Idempotent", "Идемпотентный")}}</th>
+ <td>Да</td>
+ </tr>
+ <tr>
+ <th scope="row">{{Glossary("Cacheable", "Кэшируемый")}}</th>
+ <td>Да</td>
+ </tr>
+ <tr>
+ <th scope="row">Допускается в <a href="/ru/docs/Learn/HTML/Forms">HTML-формах</a></th>
+ <td>Да</td>
+ </tr>
+ </tbody>
+</table>
+
+<h2 id="Синтаксис">Синтаксис</h2>
+
+<pre class="syntaxbox">GET /index.html
+</pre>
+
+<h2 id="Спецификации">Спецификации</h2>
+
+<table class="standard-table">
+ <tbody>
+ <tr>
+ <th scope="col">Спецификация</th>
+ <th scope="col">Заголовок</th>
+ </tr>
+ <tr>
+ <td>{{RFC("7231", "GET", "4.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.methods.GET")}}</p>
+
+<h2 id="Смотрите_также">Смотрите также</h2>
+
+<ul>
+ <li><a href="/ru/docs/Web/HTTP/%D0%97%D0%B0%D0%B3%D0%BE%D0%BB%D0%BE%D0%B2%D0%BA%D0%B8">HTTP Заголовки</a></li>
+ <li>{{HTTPHeader("Range")}}</li>
+ <li><a href="/ru/docs/Web/HTTP/Methods/POST">POST</a></li>
+</ul>