Results of 1 - 8 of about 8 for receiver (0.018 sec.)
- django.dispatch.dispatcher — Django 4.0.6 ドキュメント 12597
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
E_ID = _make_id ( None ) # A marker for caching NO_RECEIVERS = object () [ドキュメント] class Signal : """ Bas ...
e class for all signals Internal attributes: receivers { receiverkey (id) : weakref(receiver) } """ def ...
ing = False ): """ Create a new signal. """ self . receivers = [] self . lock = threading . Lock () self . use ...
ined, then for each # distinct sender we cache the receivers that sender has in # 'sender_receivers_cache'. Th ...
-
https://man.plustar.jp/django/_modules/django/dispatch/dispatcher.html
- [similar]
- Signals — Django 4.0.6 ドキュメント 11676
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
, signals allow certain senders to notify a set of receivers that some action has taken place. They're especia ...
ening to signals ¶ To receive a signal, register a receiver function using the Signal.connect() method. The re ...
alled when the signal is sent. All of the signal's receiver functions are called one at a time, in the order t ...
hey were registered. Signal. connect ( receiver , sender = None , weak = True , dispatch_uid = Non ...
-
https://man.plustar.jp/django/topics/signals.html
- [similar]
- Django の認証方法のカスタマイズ — Django 4.0.6 ドキュメント 8115
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
o.db.models.signals import post_save def post_save_receiver ( sender , instance , created , ** kwargs ): pass ...
post_save . connect ( post_save_receiver , sender = settings . AUTH_USER_MODEL ) 一般的に言 ...
import setting_changed from django.dispatch import receiver @receiver ( setting_changed ) def user_model_swapp ...
-
https://man.plustar.jp/django/topics/auth/customizing.html
- [similar]
- アプリケーション — Django 4.0.6 ドキュメント 7988
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
with the model's string label pre_save . connect ( receiver , sender = 'app_label.MyModel' ) 警告 Although you ...
-
https://man.plustar.jp/django/ref/applications.html
- [similar]
- Signals — Django 4.0.6 ドキュメント 7988
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
r model can be lazily referenced when connecting a receiver by specifying its full application label. For exam ...
formance reasons, you shouldn't perform queries in receivers of pre_init or post_init signals because they wou ...
() runs after the app registry is fully populated, receivers cannot be connected in that method. One possibili ...
-
https://man.plustar.jp/django/ref/signals.html
- [similar]
- Django 1.5 release notes — Django 4.0.6 ドキュメント 7988
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
le codes for Quebec. It's an old abbreviation. The receiver decorator is now able to connect to more than one ...
-
https://man.plustar.jp/django/releases/1.5.html
- [similar]
- Django 1.8 リリースノート — Django 4.0.6 ドキュメント 7952
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
s are set to None . Signals ¶ Exceptions from the (receiver, exception) tuples returned by Signal.send_robust( ...
-
https://man.plustar.jp/django/releases/1.8.html
- [similar]
- 索引 — Django 4.0.6 ドキュメント 7934
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
eceive_data_chunk() (FileUploadHandler のメソッド) receiver() (django.dispatch モジュール) recursive (FilePath ...
-
https://man.plustar.jp/django/genindex.html
- [similar]
PREV
1
NEXT