Results of 1 - 10 of about 18 for AppConfig (0.020 sec.)
- アプリケーション — Django 4.0.6 ドキュメント 14447
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
ョンごとのメタデータは、アプリケーションレジストリが AppConfig インスタンス内に保存しています。 There's no restri ...
リケーション内に apps.py モジュールを作成し、そこに AppConfig のサブクラスを定義してください。 When INSTALLED_AP ...
on module, by default, if Django finds exactly one AppConfig subclass in the apps.py submodule, it uses that co ...
lication. This behavior may be disabled by setting AppConfig.default to False . apps.py モジュールに複数の AppC ...
-
https://man.plustar.jp/django/ref/applications.html
- [similar]
- django.apps.config — Django 4.0.6 ドキュメント 11273
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
MODELS_MODULE_NAME = "models" [ドキュメント] class AppConfig : """Class representing a Django application and i ...
e # Reference to the Apps registry that holds this AppConfig. Set by the # registry when it registers the AppCo ...
eturn self . __class__ . default_auto_field is not AppConfig . default_auto_field def _path_from_module ( self ...
ons ( %r ); " "you must configure this app with an AppConfig subclass " "with a 'path' class attribute." % ( mo ...
-
https://man.plustar.jp/django/_modules/django/apps/config.html
- [similar]
- Django 3.2 release notes — Django 4.0.6 ドキュメント 9694
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
each series. What's new in Django 3.2 ¶ Automatic AppConfig discovery ¶ Most pluggable applications define an ...
the apps.py submodule exists and defines a single AppConfig subclass, Django now uses that configuration autom ...
PPS (e.g. 'django.contrib.admin' ) rather than the app config's path (e.g. 'django.contrib.admin.apps.AdminConf ...
tter, but the switch didn't happen. With automatic AppConfig discovery, default_app_config is no longer needed. ...
-
https://man.plustar.jp/django/releases/3.2.html
- [similar]
- Signals — Django 4.0.6 ドキュメント 9591
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
nt during the app registry population process, and AppConfig.ready() runs after the app registry is fully popul ...
in that method. One possibility is to connect them AppConfig.__init__() instead, taking care not to import mode ...
ルとともに送信される引数は以下の通りです: sender An AppConfig instance for the application about to be migrated/ ...
ルとともに送信される引数は以下の通りです: sender An AppConfig instance for the application that was just install ...
-
https://man.plustar.jp/django/ref/signals.html
- [similar]
- 索引 — Django 4.0.6 ドキュメント 8356
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
の属性) AppCommand (django.core.management のクラス) AppConfig (django.apps のクラス) APPEND_SLASH setting append ...
cache のメソッド) default template filter default (AppConfig の属性) (Field の属性) DEFAULT_AUTO_FIELD setting ...
default_auto_field (AppConfig の属性) DEFAULT_CHARSET setting DEFAULT_EXCEPTION_ ...
n_num() (InlineModelAdmin のメソッド) get_model() (AppConfig のメソッド) (apps のメソッド) get_model_class() (b ...
-
https://man.plustar.jp/django/genindex.html
- [similar]
- Signals — Django 4.0.6 ドキュメント 8098
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
y connect signal handlers: from django.apps import AppConfig from django.core.signals import request_finished c ...
lass MyAppConfig ( AppConfig ): ... def ready ( self ): # Implicitl ...
-
https://man.plustar.jp/django/topics/signals.html
- [similar]
- システムチェックフレームワーク — Django 4.0.6 ドキュメント 7909
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
en your application is loaded; for example, in the AppConfig.ready() method. register ( *tags)(function ) ¶ You ...
-
https://man.plustar.jp/django/topics/checks.html
- [similar]
- Django 1.7 release notes — Django 4.0.6 ドキュメント 7807
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
two apps with the same label, you should create an AppConfig for one of them and override its label there. You ...
instead of handle_app() . This method receives an AppConfig instance instead of a models module. Introspecting ...
-
https://man.plustar.jp/django/releases/1.7.html
- [similar]
- django.core.management.base — Django 4.0.6 ドキュメント 7755
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
" Perform the command's actions for app_config, an AppConfig instance corresponding to an application label giv ...
-
https://man.plustar.jp/django/_modules/django/core/management/base.html
- [similar]
- How to write custom lookups — Django 4.0.6 ドキュメント 7755
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
装する場所は models.py ファイル内で行ってもよいし、 AppConfig 内の ready() メソッドにてルックアップの登録を行うの ...
-
https://man.plustar.jp/django/howto/custom-lookups.html
- [similar]