Results of 1 - 10 of about 170 for Http (0.023 sec.)
- フォームアセット (Media クラス) — Django 4.0.6 ドキュメント 11404
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
endarWidget () >>> print ( w . media ) <link href="http://static.example.com/pretty.css" type="text/css" m ...
edia="all" rel="stylesheet"> <script src="http://static.example.com/animations.js"></script> <scr ...
ipt src="http://static.example.com/actions.js"></script> 以下は指 ...
義を描画すると、HTML が出力されます: < link href = "http://static.example.com/pretty.css" type = "text/css" ...
-
https://man.plustar.jp/django/topics/forms/media.html
- [similar]
- リクエストとレスポンスのオブジェクト — Django 4.0.6 ドキュメント 11156
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
とき、Django はリクエストに関するメタデータを含んだ HttpRequest オブジェクトを生成します。それから Django は ...
HttpRequest をビュー関数の最初の関数として渡し、適切なビ ...
ューを読み込みます。あらゆるビューは HttpResponse オブジェクトを返す必要があります。 このドキ ...
ュメントでは、 HttpRequest と HttpResponse オブジェクトの API を説明し ...
-
https://man.plustar.jp/django/ref/request-response.html
- [similar]
- クラスベース汎用ビュー - フラットインデックス — Django 4.0.6 ドキュメント 11099
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
ー ¶ View ¶ class View ¶ 属性 (と省略可能な継承元): http_method_names メソッド as_view() dispatch() head() ...
性 (と省略可能な継承元): content_type extra_context http_method_names response_class [ render_to_response() ...
_view() dispatch() get() get_context_data() head() http_method_not_allowed() render_to_response() setup() ...
¶ class RedirectView ¶ 属性 (と省略可能な継承元): http_method_names pattern_name permanent query_string u ...
-
https://man.plustar.jp/django/ref/class-based-views/flattened-index.html
- [similar]
- 条件付きビュー — Django 4.0.6 ドキュメント 9080
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
Modules « previous | up | next » 条件付きビュー ¶ HTTP clients can send a number of headers to tell the s ...
commonly used when retrieving a web page (using an HTTP GET request) to avoid sending all the data for som ...
ved. However, the same headers can be used for all HTTP methods ( POST , PUT , DELETE , etc.). For each pa ...
jango sends back from a view, it might provide two HTTP headers: the ETag header and the Last-Modified hea ...
-
https://man.plustar.jp/django/topics/conditional-view-processing.html
- [similar]
- View decorators — Django 4.0.6 ドキュメント 8527
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
rs that can be applied to views to support various HTTP features. See クラスをデコレーションする for how t ...
e these decorators with class-based views. Allowed HTTP methods ¶ The decorators in django.views.decorator ...
s.http can be used to restrict access to views based on t ...
uest method. These decorators will return a django.http.HttpResponseNotAllowed if the conditions are not m ...
-
https://man.plustar.jp/django/topics/http/decorators.html
- [similar]
- Base views — Django 4.0.6 ドキュメント 8426
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
きます。 メソッドのフローチャート setup() dispatch() http_method_not_allowed() options() Example views.py : ...
from django.http import HttpResponse from django.views import View ...
et ( self , request , * args , ** kwargs ): return HttpResponse ( 'Hello, World!' ) Example urls.py : from ...
, MyView . as_view (), name = 'my-view' ), ] 属性 http_method_names ¶ このビューが受け入れる HTTP メソッド ...
-
https://man.plustar.jp/django/ref/class-based-views/base.html
- [similar]
- ビューを記述する — Django 4.0.6 ドキュメント 8324
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
して、現在の日付と時刻を返すビューです: from django.http import HttpResponse import datetime def current_da ...
l><body>It is now %s .</body></html>" % now return HttpResponse ( html ) 1 行ずつコードを見ていきましょう: ...
初に、Python の datetime ライブラリ とともに、クラス HttpResponse を django.http モジュールからインポートしま ...
ます。これがビュー関数です。それぞれのビュー関数は、 HttpRequest のオブジェクトを第 1 引数として受け取り、一 ...
-
https://man.plustar.jp/django/topics/http/views.html
- [similar]
- Django 1.11.22 リリースノート — Django 4.0.6 ドキュメント 8268
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
curity issue in 1.11.21. CVE-2019-12781: Incorrect HTTP detection with reverse-proxy connecting via HTTPS ...
ed behind a reverse-proxy connecting to Django via HTTPS, django.http.HttpRequest.scheme would incorrectly ...
detect client requests made via HTTP as using HTTPS. This entails incorrect results for ...
is_secure() , and build_absolute_uri() , and that HTTP requests would not be redirected to HTTPS in accor ...
-
https://man.plustar.jp/django/releases/1.11.22.html
- [similar]
- Django 2.1.10 リリースノート — Django 4.0.6 ドキュメント 8268
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
security issue in 2.1.9. CVE-2019-12781: Incorrect HTTP detection with reverse-proxy connecting via HTTPS ...
ed behind a reverse-proxy connecting to Django via HTTPS, django.http.HttpRequest.scheme would incorrectly ...
detect client requests made via HTTP as using HTTPS. This entails incorrect results for ...
is_secure() , and build_absolute_uri() , and that HTTP requests would not be redirected to HTTPS in accor ...
-
https://man.plustar.jp/django/releases/2.1.10.html
- [similar]
- Django 2.2.3 リリースノート — Django 4.0.6 ドキュメント 8076
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
nsifex are incorporated. CVE-2019-12781: Incorrect HTTP detection with reverse-proxy connecting via HTTPS ...
ed behind a reverse-proxy connecting to Django via HTTPS, django.http.HttpRequest.scheme would incorrectly ...
detect client requests made via HTTP as using HTTPS. This entails incorrect results for ...
is_secure() , and build_absolute_uri() , and that HTTP requests would not be redirected to HTTPS in accor ...
-
https://man.plustar.jp/django/releases/2.2.3.html
- [similar]