Results of 1 - 10 of about 62 for validate (0.014 sec.)
- バリデータ — Django 4.0.6 ドキュメント 14752
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
ngo.utils.translation import gettext_lazy as _ def validate_even ( value ): if value % 2 != 0 : raise Validati ...
ven_field = models . IntegerField ( validators = [ validate_even ]) 値はバリデータ実行前に Python に変換されて ...
even_field = forms . IntegerField ( validators = [ validate_even ]) より複雑なバリデータに対しては、クラスで _ ...
expression (the domain_regex attribute) is used to validate whatever appears after the @ sign. However, if tha ...
-
https://man.plustar.jp/django/ref/validators.html
- [similar]
- django.core.validators — Django 4.0.6 ドキュメント 11501
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
n import ngettext_lazy # These values, if given to validate(), will trigger the self.required check. EMPTY_VAL ...
self . flags ) def __call__ ( self , value ): """ Validate that the input contains (or does *not* contain, if ...
" ) ipv6_re = r "\[[0-9a-f:.]+\]" # (simple regex, validated later) # Host patterns hostname_re = ( r "[a-z" + ...
_re_compile ( r "^(?:[a-z0-9.+-]*)://" # scheme is validated separately r "(?:[^\s:@/]+(?::[^\s:@/]*)?@)?" # u ...
-
https://man.plustar.jp/django/_modules/django/core/validators.html
- [similar]
- Django 2.2.24 release notes — Django 4.0.6 ドキュメント 9478
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
d leading zeros in IPv4 addresses ¶ URLValidator , validate_ipv4_address() , and validate_ipv46_address() didn ...
fer from indeterminate SSRF, RFI, and LFI attacks. validate_ipv4_address() and validate_ipv46_address() valida ...
notes 関連キーワード release , notes , admindocs , validate , attacks , indeterminate , SSRF , LFI , validator ...
-
https://man.plustar.jp/django/releases/2.2.24.html
- [similar]
- Django 3.1.12 release notes — Django 4.0.6 ドキュメント 9478
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
d leading zeros in IPv4 addresses ¶ URLValidator , validate_ipv4_address() , and validate_ipv46_address() didn ...
fer from indeterminate SSRF, RFI, and LFI attacks. validate_ipv4_address() and validate_ipv46_address() valida ...
notes 関連キーワード release , notes , admindocs , validate , attacks , indeterminate , SSRF , LFI , validator ...
-
https://man.plustar.jp/django/releases/3.1.12.html
- [similar]
- Django 3.2.4 release notes — Django 4.0.6 ドキュメント 9016
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
d leading zeros in IPv4 addresses ¶ URLValidator , validate_ipv4_address() , and validate_ipv46_address() didn ...
fer from indeterminate SSRF, RFI, and LFI attacks. validate_ipv4_address() and validate_ipv46_address() valida ...
ase notes 関連キーワード release , notes , Fixed , validate , admindocs , regression , crash , when , bug , le ...
-
https://man.plustar.jp/django/releases/3.2.4.html
- [similar]
- Django 1.4.21 release notes — Django 4.0.6 ドキュメント 8958
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
prohibit newlines as well. You might also want to validate that any existing data in your application doesn't ...
contain unexpected newlines. validate_ipv4_address() , validate_slug() , and URLValidato ...
also affected. The undocumented, internally unused validate_integer() function is now stricter as it validates ...
連キーワード session , release , notes , newlines , validate , validators , records , built , record , backends ...
-
https://man.plustar.jp/django/releases/1.4.21.html
- [similar]
- フォームとフィールドの検証 — Django 4.0.6 ドキュメント 8886
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
Validators are run after the field's to_python and validate methods have been called. フォームのバリデーション ...
るか、もしくは ValidationError を投げます。 Field の validate() メソッドは、フィールド特有のバリデーションを行い ...
d サブクラスの clean() メソッドは、 to_python() 、 validate() 、 run_validators() を正しい順序で実行し、エラー ...
グしているからです)。 For example, if you wanted to validate that the contents of a CharField called serialnumb ...
-
https://man.plustar.jp/django/ref/forms/validation.html
- [similar]
- Django 1.7.9 release notes — Django 4.0.6 ドキュメント 8886
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
prohibit newlines as well. You might also want to validate that any existing data in your application doesn't ...
contain unexpected newlines. validate_ipv4_address() , validate_slug() , and URLValidato ...
e form fields. The undocumented, internally unused validate_integer() function is now stricter as it validates ...
ession , release , notes , newlines , validators , validate , input , injection , only , using クイック検索 La ...
-
https://man.plustar.jp/django/releases/1.7.9.html
- [similar]
- django.core.paginator — Django 4.0.6 ドキュメント 8626
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
page_range : yield self . page ( page_number ) def validate_number ( self , number ): """Validate the given 1- ...
umber or isn't in range. """ try : number = self . validate_number ( number ) except PageNotAnInteger : number ...
the given 1-based page number.""" number = self . validate_number ( number ) bottom = ( number - 1 ) * self . ...
42, 43, 44, 45, 46, …, 49, 50. """ number = self . validate_number ( number ) if self . num_pages <= ( on_each ...
-
https://man.plustar.jp/django/_modules/django/core/paginator.html
- [similar]
- モデルフォーム関数 — Django 4.0.6 ドキュメント 8496
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
fields = None , exclude = None , widgets = None , validate_max = False , localized_fields = None , labels = N ...
= None , error_messages = None , min_num = None , validate_min = False , field_classes = None , absolute_max ...
rmset , extra , can_delete , can_order , max_num , validate_max , min_num , validate_min , absolute_max , can_ ...
one , formfield_callback = None , widgets = None , validate_max = False , localized_fields = None , labels = N ...
-
https://man.plustar.jp/django/ref/forms/models.html
- [similar]