Results of 1 - 10 of about 176 for None (0.027 sec.)
- モデルフォーム関数 — Django 4.0.6 ドキュメント 9413
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
form_factory ( model , form = ModelForm , fields = None , exclude = None , formfield_callback = None , wid ...
gets = None , localized_fields = None , labels = None , help_t ...
exts = None , error_messages = None , field_classes = None ) ¶ ...
( model , form = ModelForm , formfield_callback = None , formset = BaseModelFormSet , extra = 1 , can_del ...
-
https://man.plustar.jp/django/ref/forms/models.html
- [similar]
- PostgreSQL specific aggregation functions — Django 4.0.6 ドキュメント 9156
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
rrayAgg ( expression , distinct = False , filter = None , default = None , ordering = () , ** extra ) ¶ Re ...
rovided, ArrayAgg returns an empty list instead of None . This behavior is deprecated and will be removed ...
]) . BitAnd ¶ class BitAnd ( expression , filter = None , default = None , ** extra ) ¶ Returns an int of ...
null. BitOr ¶ class BitOr ( expression , filter = None , default = None , ** extra ) ¶ Returns an int of ...
-
https://man.plustar.jp/django/ref/contrib/postgres/aggregates.html
- [similar]
- django.core.mail.message — Django 4.0.6 ドキュメント 8743
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
Charset ( "utf-8" ) utf8_charset . body_encoding = None # Python defaults to BASE64 utf8_charset_qp = Char ...
address) or an email address string. """ address = None if not isinstance ( addr , tuple ): addr = force_s ...
_ ( self , _text , _subtype = "plain" , _charset = None ): self . encoding = _charset MIMEText . __init__ ...
val ) def set_payload ( self , payload , charset = None ): if charset == "utf-8" and not isinstance ( char ...
-
https://man.plustar.jp/django/_modules/django/core/mail/message.html
- [similar]
- Database Functions — Django 4.0.6 ドキュメント 8676
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
ie >>> # Prevent an aggregate Sum() from returning None >>> # The aggregate default argument uses Coalesce ...
, ... ) >>> print ( aggregated [ 'combined_age' ]) None >>> print ( aggregated [ 'combined_age_default' ]) ...
omment.modified . 警告 The behavior of Greatest when one or more expression may be null varies between dat ...
in a database error. 警告 The behavior of Least when one or more expression may be null varies between dat ...
-
https://man.plustar.jp/django/ref/models/database-functions.html
- [similar]
- django.core.validators — Django 4.0.6 ドキュメント 8642
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
trigger the self.required check. EMPTY_VALUES = ( None , "" , [], (), {}) [ドキュメント] @deconstructible ...
ch = False flags = 0 def __init__ ( self , regex = None , message = None , code = None , inverse_match = N ...
one , flags = None ): if regex is not None : self . regex = regex if ...
message is not None : self . message = message if code is not None : s ...
-
https://man.plustar.jp/django/_modules/django/core/validators.html
- [similar]
- Django Utils — Django 4.0.6 ドキュメント 8609
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
he response Cache-Control header as an integer (or None if it wasn't found or wasn't an integer). patch_re ...
sponse_headers ( response , cache_timeout = None ) ¶ Adds some useful headers to the given HttpResp ...
't removed. get_cache_key ( request , key_prefix = None , method = 'GET' , cache = None ) ¶ Returns a cach ...
page needs to be rebuilt, so this function returns None . learn_cache_key ( request , response , cache_tim ...
-
https://man.plustar.jp/django/ref/utils.html
- [similar]
- バリデータ — Django 4.0.6 ドキュメント 8609
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
す。 RegexValidator ¶ class RegexValidator ( regex = None , message = None , code = None , inverse_match = N ...
one , flags = 0 ) [ソース] ¶ パラメータ: regex -- None 以外の場合、 regex をオーバーライドします。正規表現 ...
、コンパイル済みの正規表現を指定します。 message -- None 以外の場合、 message をオーバーライドします。 code ...
-- None 以外の場合、 code をオーバーライドします。 inverse ...
-
https://man.plustar.jp/django/ref/validators.html
- [similar]
- django.core.mail — Django 4.0.6 ドキュメント 8575
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
, ] [ドキュメント] def get_connection ( backend = None , fail_silently = False , ** kwds ): """Load an em ...
ackend and return an instance of it. If backend is None (default), use settings.EMAIL_BACKEND. Both fail_s ...
cipient_list , fail_silently = False , auth_user = None , auth_password = None , connection = None , html_ ...
message = None , ): """ Easy wrapper for sending a single message ...
-
https://man.plustar.jp/django/_modules/django/core/mail.html
- [similar]
- django.contrib.auth — Django 4.0.6 ドキュメント 8542
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
理を行います。 User は保存しません。 raw_password が None のとき、 set_unusable_password() が使われるのと同じ ...
合、 False を返します。 get_user_permissions ( obj = None ) ¶ Returns a set of permission strings that the u ...
his specific object. get_group_permissions ( obj = None ) ¶ ユーザがグループを通して持つパーミッションの文 ...
ッションのみを返します。 get_all_permissions ( obj = None ) ¶ ユーザがグループおよびユーザパーミッションを通 ...
-
https://man.plustar.jp/django/ref/contrib/auth.html
- [similar]
- django.db.transaction — Django 4.0.6 ドキュメント 8386
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
d improperly.""" pass def get_connection ( using = None ): """ Get a database connection by name, or the d ...
s provided. This is a private API. """ if using is None : using = DEFAULT_DB_ALIAS return connections [ us ...
ing ] [ドキュメント] def get_autocommit ( using = None ): """Get the autocommit status of the connection. ...
ュメント] def set_autocommit ( autocommit , using = None ): """Set the autocommit status of the connection. ...
-
https://man.plustar.jp/django/_modules/django/db/transaction.html
- [similar]