検索

phrase: max: clip:
target: order:
Results of 1 - 10 of about 52 for HttpRequest (0.039 sec.)
リクエストとレスポンスのオブジェクト — Django 4.0.6 ドキュメント 16832
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... とき、Django はリクエストに関するメタデータを含んだ HttpRequest オブジェクトを生成します。それから Django は HttpR ... ェクトを返す必要があります。 このドキュメントでは、 HttpRequest と HttpResponse オブジェクトの API を説明しています ... これは django.http モジュールにて定義されています。 HttpRequest オブジェクト ¶ class HttpRequest ¶ 属性 ¶ 特に記載 ... い限り、全ての属性は読み取り専用だと考えてください。 HttpRequest. scheme ¶ リクエストのスキームを表す文字列です (通 ...
https://man.plustar.jp/django/ref/request-response.html - [similar]
索引 — Django 4.0.6 ドキュメント 10081
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... Response のメソッド) __iter__() (File のメソッド) (HttpRequest のメソッド) (ModelChoiceIterator のメソッド) (OGRG ... RIDES setting abstract (Options の属性) accepts() (HttpRequest のメソッド) AccessMixin (django.contrib.auth.mixin ... x (django.contrib.postgres.indexes のクラス) body (HttpRequest の属性) BoolAnd (django.contrib.postgres.aggregate ... () (GEOSGeometry のメソッド) build_absolute_uri() (HttpRequest のメソッド) build_suite() (DiscoverRunner のメソッ ...
https://man.plustar.jp/django/genindex.html - [similar]
Django の admin サイト — Django 4.0.6 ドキュメント 8961
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... er = ( DecadeBornListFilter ,) 注釈 利便性のため、 HttpRequest オブジェクトが lookups と queryset メソッドに渡され ... obj , form , change ) ¶ save_model メソッドには、 HttpRequest 、モデルのインスタンス、 ModelForm のインスタンス、 ... lete_model ( request , obj ) ¶ delete_model には、 HttpRequest とモデルのインスタンスが渡されます。このメソッドを ... ( request , queryset ) ¶ delete_queryset() には、 HttpRequest と削除するオブジェクトの QuerySet が渡されます。こ ...
https://man.plustar.jp/django/ref/contrib/admin/index.html - [similar]
Django 2.2.3 リリースノート — Django 4.0.6 ドキュメント 8796
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... -proxy connecting to Django via HTTPS, django.http.HttpRequest.scheme would incorrectly detect client requests ma ... is_secure() , and build_absolute_uri() , and that HTTP requests would not be redirected to HTTPS in accordance w ... ith SECURE_SSL_REDIRECT . HttpRequest.scheme now respects SECURE_PROXY_SSL_HEADER , if i ... deploy Django behind a reverse-proxy that forwards HTTP requests, and that connects to Django via HTTPS, be sure ...
https://man.plustar.jp/django/releases/2.2.3.html - [similar]
How to manage error reporting — Django 4.0.6 ドキュメント 8319
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... , each traceback frame 's local variables, and the HttpRequest 's attributes . However, sometimes certain types o ... * parameters ) ¶ If one of your views receives an HttpRequest object with POST parameters susceptible to contain ... the names of sensitive variables and annotate the HttpRequest object with the names of sensitive POST parameters ... filter to use within any given view by setting the HttpRequest 's exception_reporter_filter attribute: def my_vie ...
https://man.plustar.jp/django/howto/error-reporting.html - [similar]
Unicode data — Django 4.0.6 ドキュメント 8229
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... zy" approach to decoding form data. The data in an HttpRequest object is only decoded when you access it. In fact ... , most of the data is not decoded at all. Only the HttpRequest.GET and HttpRequest.POST data structures have any ... Unicode data. All other attributes and methods of HttpRequest return data exactly as it was submitted by the cli ... lar form, you can set the encoding attribute on an HttpRequest instance. For example: def some_view ( request ): ...
https://man.plustar.jp/django/ref/unicode.html - [similar]
Django 1.11.22 リリースノート — Django 4.0.6 ドキュメント 8154
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... -proxy connecting to Django via HTTPS, django.http.HttpRequest.scheme would incorrectly detect client requests ma ... is_secure() , and build_absolute_uri() , and that HTTP requests would not be redirected to HTTPS in accordance w ... ith SECURE_SSL_REDIRECT . HttpRequest.scheme now respects SECURE_PROXY_SSL_HEADER , if i ... deploy Django behind a reverse-proxy that forwards HTTP requests, and that connects to Django via HTTPS, be sure ...
https://man.plustar.jp/django/releases/1.11.22.html - [similar]
Django 2.1.10 リリースノート — Django 4.0.6 ドキュメント 8154
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... -proxy connecting to Django via HTTPS, django.http.HttpRequest.scheme would incorrectly detect client requests ma ... is_secure() , and build_absolute_uri() , and that HTTP requests would not be redirected to HTTPS in accordance w ... ith SECURE_SSL_REDIRECT . HttpRequest.scheme now respects SECURE_PROXY_SSL_HEADER , if i ... deploy Django behind a reverse-proxy that forwards HTTP requests, and that connects to Django via HTTPS, be sure ...
https://man.plustar.jp/django/releases/2.1.10.html - [similar]
django.contrib.auth — Django 4.0.6 ドキュメント 8065
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... た今ログインしたユーザのクラスです。 request 現在の HttpRequest インスタンスです。 user たった今ログインしたユーザ ... されなかった場合は None となります。 request 現在の HttpRequest インスタンスです。 user たった今ログアウトしたユー ... ナルの一部として明確には送信されません。 request The HttpRequest object, if one was provided to authenticate() . 認 ... Returns an authenticated user or None . request は HttpRequest で、 authenticate() が提供されていない場合 None と ...
https://man.plustar.jp/django/ref/contrib/auth.html - [similar]
Django 1.3.4 release notes — Django 4.0.6 ドキュメント 8065
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... .3.3 and Django 1.4.1 -- specifically, django.http.HttpRequest.get_host() -- was incorrectly handling username/pa ... rary URLs to users. To remedy this, the parsing in HttpRequest.get_host() is being modified; Host headers which c ...
https://man.plustar.jp/django/releases/1.3.4.html - [similar]
PREV 1 2 3 4 5 6 NEXT