Results of 1 - 10 of about 19 for dispatch (0.021 sec.)
- django.dispatch.dispatcher — Django 4.0.6 ドキュメント 13130
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
me | Table of contents | Index | Modules up django.dispatch.dispatcher のソースコード import logging import th ...
epts_kwargs logger = logging . getLogger ( "django.dispatch" ) def _make_id ( target ): if hasattr ( target , ...
( self , receiver , sender = None , weak = True , dispatch_uid = None ): """ Connect receiver to sender for s ...
yword arguments. If a receiver is connected with a dispatch_uid argument, it will not be added if another rece ...
-
https://man.plustar.jp/django/_modules/django/dispatch/dispatcher.html
- [similar]
- クラスベース汎用ビュー - フラットインデックス — Django 4.0.6 ドキュメント 11816
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
可能な継承元): http_method_names メソッド as_view() dispatch() head() http_method_not_allowed() setup() Templat ...
e_name [ get_template_names() ] メソッド as_view() dispatch() get() get_context_data() head() http_method_not_ ...
[ get_redirect_url() ] メソッド as_view() delete() dispatch() get() head() http_method_not_allowed() options() ...
name_field template_name_suffix メソッド as_view() dispatch() get() get_context_data() get_object() head() htt ...
-
https://man.plustar.jp/django/ref/class-based-views/flattened-index.html
- [similar]
- Signals — Django 4.0.6 ドキュメント 11542
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
| up | next » Signals ¶ Django includes a "signal dispatcher" which helps decoupled applications get notified ...
connect ( receiver , sender = None , weak = True , dispatch_uid = None ) [ソース] ¶ パラメータ: receiver -- Th ...
False when you call the signal's connect() method. dispatch_uid -- A unique identifier for a signal receiver i ...
o.core.signals import request_finished from django.dispatch import receiver @receiver ( request_finished ) def ...
-
https://man.plustar.jp/django/topics/signals.html
- [similar]
- Base views — Django 4.0.6 ドキュメント 9476
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
ることができます。 メソッドのフローチャート setup() dispatch() http_method_not_allowed() options() Example view ...
the args and kwargs attributes, respectively. Then dispatch() is called. setup ( request , * args , ** kwargs ...
) ¶ Performs key view initialization prior to dispatch() . If overriding this method, you must call super ...
() . dispatch ( request , * args , ** kwargs ) ¶ The view part o ...
-
https://man.plustar.jp/django/ref/class-based-views/base.html
- [similar]
- クラスベースビュー入門 — Django 4.0.6 ドキュメント 9408
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
し、 setup() を呼び出してその属性を初期化し、その後 dispatch() メソッドを呼び出します。 dispatch はリクエストを ...
レーションする必要があります。そのためには、クラスの dispatch() メソッドにデコレータを付けます。 クラス上のメソッ ...
ret.html' @method_decorator ( login_required ) def dispatch ( self , * args , ** kwargs ): return super () . d ...
ます。 @method_decorator ( login_required , name = 'dispatch' ) class ProtectedView ( TemplateView ): template_ ...
-
https://man.plustar.jp/django/topics/class-based-views/intro.html
- [similar]
- Pythonモジュール索引 — Django 4.0.6 ドキュメント 8025
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
by the model system. django.db.transaction django.dispatch Signal dispatch f django.forms django.forms.fields ...
-
https://man.plustar.jp/django/py-modindex.html
- [similar]
- Generic display ビュー — Django 4.0.6 ドキュメント 8025
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
generic.base.View メソッドのフローチャート setup() dispatch() http_method_not_allowed() get_template_names() g ...
generic.base.View メソッドのフローチャート setup() dispatch() http_method_not_allowed() get_template_names() g ...
-
https://man.plustar.jp/django/ref/class-based-views/generic-display.html
- [similar]
- 概要: モジュールコード — Django 4.0.6 ドキュメント 7957
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
ators django.db.transaction django.db.utils django.dispatch.dispatcher django.middleware.clickjacking django.u ...
-
https://man.plustar.jp/django/_modules/index.html
- [similar]
- django.utils.translation — Django 4.0.6 ドキュメント 7888
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
tarted . connect ( watch_for_translation_changes , dispatch_uid = "translation_file_changed" ) file_changed . ...
connect ( translation_file_changed , dispatch_uid = "translation_file_changed" ) else : from dja ...
-
https://man.plustar.jp/django/_modules/django/utils/translation.html
- [similar]
- Porting your apps from Django 0.96 to 1.0 — Django 4.0.6 ドキュメント 7888
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
object instead of through module methods in django.dispatch.dispatcher . Remove any use of the Anonymous and A ...
m signals you've declared into instances of django.dispatch.Signal instead of anonymous objects. Here's quick ...
back(sender, **kwargs) sig = object() sig = django.dispatch.Signal() dispatcher.connect(callback, sig) sig.con ...
nect(callback) dispatcher.send(sig, sender) sig.send(sender) dispatcher.co ...
-
https://man.plustar.jp/django/releases/1.0-porting-guide.html
- [similar]