検索

phrase: max: clip:
target: order:
Results of 11 - 20 of about 30 for ValidationError (0.062 sec.)
フォーム API — Django 4.0.6 ドキュメント 7635
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... Form.errors. as_data () ¶ フィールドとオリジナルの ValidationError インスタンスをマッピングする dict を返します。 >>> ... f . errors . as_data () {'sender': [ValidationError(['Enter a valid email address.'])], 'subject': [Va ... _data() の必要性は、後方互換性に起因します。以前は ValidationError インスタンスは 描画された エラーメッセージが Form. ... ると同時に消失していました。できれば Form.errors が ValidationError インスタンスを保持し、 as_ プレフィクスを伴うメソッ ...
https://man.plustar.jp/django/ref/forms/api.html - [similar]
Constraints reference — Django 4.0.6 ドキュメント 7538
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... not checked during full_clean() , and do not raise ValidationError s. Rather you'll get a database integrity error on ... idation. In addition to IntegrityError on save() , ValidationError is also raised during model validation when the Un ...
https://man.plustar.jp/django/ref/models/constraints.html - [similar]
Django 1.7.2 release notes — Django 4.0.6 ドキュメント 7473
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... a ModelForm ( #23795 ). Fixed a custom field type validation error with MySQL backend when db_type returned None ( # ... levels of subqueries ( #23758 ). Fixed crash when ValidationError is initialized with a ValidationError that is init ...
https://man.plustar.jp/django/releases/1.7.2.html - [similar]
Djangoにおけるパスワード管理 — Django 4.0.6 ドキュメント 7473
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... e or more validators reject the password, raises a ValidationError with all the error messages from the validators. T ... . Return None if the password is valid, or raise a ValidationError with an error message if the password is not valid ... tional setting: from django.core.exceptions import ValidationError from django.utils.translation import gettext as _ ... ): if len ( password ) < self . min_length : raise ValidationError ( _ ( "This password must contain at least %(min_l ...
https://man.plustar.jp/django/topics/auth/passwords.html - [similar]
Django 1.9.7 リリースノート — Django 4.0.6 ドキュメント 7375
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... nsactions ( #26627 ). Fixed HStoreField to raise a ValidationError instead of crashing on non-dictionary JSON input ( ...
https://man.plustar.jp/django/releases/1.9.7.html - [similar]
フォーム — Django 4.0.6 ドキュメント 7326
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ビルトインのウィジェット フォームとフィールドの検証 ValidationError を発生させる 実際にバリデーションを使用する 前のト ...
https://man.plustar.jp/django/ref/forms/index.html - [similar]
Django 1.3 release notes — Django 4.0.6 ドキュメント 7326
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... pass in empty dictionary the FormSet will raise a ValidationError . For example with a FormSet : >>> class ArticleFo ... ry ( ArticleForm ) the following code will raise a ValidationError : >>> ArticleFormSet ({}) Traceback (most recent c ... all last): ... ValidationError : [u'ManagementForm data is missing or has been ta ...
https://man.plustar.jp/django/releases/1.3.html - [similar]
Django 1.4.2 release notes — Django 4.0.6 ドキュメント 7326
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... dates passed as url parameters caused an unhandled ValidationError (#18530). Fixed an endless loop bug when accessing ...
https://man.plustar.jp/django/releases/1.4.2.html - [similar]
How to create custom model fields — Django 4.0.6 ドキュメント 7278
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... nces: import re from django.core.exceptions import ValidationError from django.db import models from django.utils.tra ... dall ( hand_string )] if len ( args ) != 4 : raise ValidationError ( _ ( "Invalid input for a Hand instance" )) retur ... wrong during value conversion, you should raise a ValidationError exception. Converting Python objects to query valu ...
https://man.plustar.jp/django/howto/custom-model-fields.html - [similar]
Django Utils — Django 4.0.6 ドキュメント 7278
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... m django.utils.module_loading import import_string ValidationError = import_string ( 'django.core.exceptions.Validati ... は以下と同じです: from django.core.exceptions import ValidationError django.utils.safestring ¶ Functions and classes fo ...
https://man.plustar.jp/django/ref/utils.html - [similar]
PREV 1 2 3 NEXT