Results of 1 - 6 of about 6 for RegexValidator (0.019 sec.)
- バリデータ — Django 4.0.6 ドキュメント 12923
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
ラスで __call__() メソッドを利用することもできます。 RegexValidator はその一例で、このテクニックを使っています。クラス ...
eld.clean() メソッドの代わりに使うことも可能です。 RegexValidator ¶ class RegexValidator ( regex = None , message = ...
ります。それ以外の場合は TypeError が発生します。 A RegexValidator searches the provided value for a given regular ex ...
None , message = None , code = None ) [ソース] ¶ A RegexValidator subclass that ensures a value looks like a URL, an ...
-
https://man.plustar.jp/django/ref/validators.html
- [similar]
- django.core.validators — Django 4.0.6 ドキュメント 9742
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
[], (), {}) [ドキュメント] @deconstructible class RegexValidator : regex = "" message = _ ( "Enter a valid value." ...
__ ( self , other ): return ( isinstance ( other , RegexValidator ) and self . regex . pattern == other . regex . pa ...
ドキュメント] @deconstructible class URLValidator ( RegexValidator ): ul = " \u00a1 - \uffff " # Unicode letters rang ...
params = { "value" : value }) integer_validator = RegexValidator ( _lazy_re_compile ( r "^-?\d+\Z" ), message = _ ( ...
-
https://man.plustar.jp/django/_modules/django/core/validators.html
- [similar]
- Form fields — Django 4.0.6 ドキュメント 8554
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
ven as empty_value . Normalizes to: A string. Uses RegexValidator to validate that the given value matches a certain ...
d. For example: from django.core.validators import RegexValidator class PhoneField ( MultiValueField ): def __init__ ...
'Enter a country calling code.' }, validators = [ RegexValidator ( r '^[0-9]+$' , 'Enter a valid country calling co ...
plete' : 'Enter a phone number.' }, validators = [ RegexValidator ( r '^[0-9]+$' , 'Enter a valid phone number.' )], ...
-
https://man.plustar.jp/django/ref/forms/fields.html
- [similar]
- 索引 — Django 4.0.6 ドキュメント 8189
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
の属性) (ProhibitNullCharactersValidator の属性) (RegexValidator の属性) codename (models.Permission の属性) coerce ...
e の属性) fk_name (InlineModelAdmin の属性) flags (RegexValidator の属性) FlatPage (django.contrib.flatpages.models ...
lattening (SpatialReference の属性) inverse_match (RegexValidator の属性) iregex field lookup type iri_to_uri() (dja ...
の属性) (ProhibitNullCharactersValidator の属性) (RegexValidator の属性) MESSAGE_LEVEL setting MESSAGE_STORAGE sett ...
-
https://man.plustar.jp/django/genindex.html
- [similar]
- フォームとフィールドの検証 — Django 4.0.6 ドキュメント 7732
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
て処理できます。例えば、 validators.validate_slug は RegexValidator の第 1 引数をパターン ^[-a-zA-Z0-9_]+$ としたインス ...
-
https://man.plustar.jp/django/ref/forms/validation.html
- [similar]
- Django 1.7 release notes — Django 4.0.6 ドキュメント 7640
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
ult, as stated in the documentation). バリデータ ¶ RegexValidator now accepts the optional flags and Boolean inverse ...
-
https://man.plustar.jp/django/releases/1.7.html
- [similar]
PREV
1
NEXT