検索

phrase: max: clip:
target: order:
Results of 11 - 20 of about 95 for valid (0.063 sec.)
Triaging tickets — Django 4.0.6 ドキュメント 8189
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ke a judgment about whether the ticket contained a valid issue, a viable feature, or ought to be closed for ... pted" is that the issue described in the ticket is valid and is in some stage of being worked on. Beyond th ... considerations: Accepted + No Flags The ticket is valid, but no one has submitted a patch for it yet. Ofte ... ed unit tests. Again, this is a required part of a valid patch. Patch needs improvement ¶ This flag means t ...
https://man.plustar.jp/django/internals/contributing/triaging-tickets.html - [similar]
フォームを使う — Django 4.0.6 ドキュメント 7833
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... 検証することも意味します。 A Form instance has an is_valid() method, which runs validation routines for all i ... When this method is called, if all fields contain valid data, it will: True を返します フォームのデータを ... = NameForm ( request . POST ) # check whether it's valid: if form . is_valid (): # process the data in form ... りつけられた" フォームとなりました)。 フォームの is_valid() メソッドを呼び出します; もし True でない場合、フ ...
https://man.plustar.jp/django/topics/forms/index.html - [similar]
How to write a custom storage class — Django 4.0.6 ドキュメント 7728
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ¶ Storage.save() から呼び出されます。 name は get_valid_name() や get_available_name() を通じて得られたもの ... ある場合には、新たな名前を返す必要があります。) get_valid_name ( name ) ¶ 対象としているストレージシステムに ... 本メソッドに受け渡される name 引数は、上に示した get_valid_name() メソッドを用いて、ストレージシステムが扱うフ ... , 実装 , ストレージ , file , オブジェクト , 発生 , valid , 名前 , How クイック検索 Last update: 2022年6月01 ...
https://man.plustar.jp/django/howto/custom-file-storage.html - [similar]
ファイルのアップロード — Django 4.0.6 ドキュメント 7491
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ( request . POST , request . FILES ) if form . is_valid (): handle_uploaded_file ( request . FILES [ 'file ... ( request . POST , request . FILES ) if form . is_valid (): # file is saved form . save () return HttpResp ... ( request . POST , request . FILES ) if form . is_valid (): instance = ModelWithFileField ( file_field = r ... st . FILES . getlist ( 'file_field' ) if form . is_valid (): for f in files : ... # Do something with each ...
https://man.plustar.jp/django/topics/http/file-uploads.html - [similar]
Generic editing ビュー — Django 4.0.6 ドキュメント 7372
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ss = ContactForm success_url = '/thanks/' def form_valid ( self , form ): # This method is called when vali ... ponse. form . send_email () return super () . form_valid ( form ) 例 myapp/forms.py : < form method = "post ... s.Form , resulting in an empty form that is always valid. By providing your own Form subclass, you can add ...
https://man.plustar.jp/django/ref/class-based-views/generic-editing.html - [similar]
File storage API — Django 4.0.6 ドキュメント 7372
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... eturns a naive datetime in the local timezone. get_valid_name ( name ) ¶ Returns a filename based on the na ... t storage system. generate_filename ( filename ) ¶ Validates the filename by calling get_valid_name() and r ... to . In that case, the path won't be passed to get_valid_name() but will be prepended back to the resulting ...
https://man.plustar.jp/django/ref/files/storage.html - [similar]
フォームとフィールドの検証 — Django 4.0.6 ドキュメント 7135
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... セス中に実行されます。これらは、通常フォーム上の is_valid() メソッドを呼び出したときに実行されます。このほか ... はなりません。 一般的に、あらゆるクリーニング方法は ValidationError を投げる可能性があります。処理されるデー ... タに問題がある場合、関連情報を ValidationError コンストラクタに渡します。 下記項目 に、 ... ValidationError を投げる際のベストプラクティスがあります ...
https://man.plustar.jp/django/ref/forms/validation.html - [similar]
Django 1.3.6 release notes — Django 4.0.6 ドキュメント 7135
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... n how to configure web servers to ensure that only valid Host headers can reach the Django application. How ... D_HOSTS , which should contain an explicit list of valid host/domain names for this site. A request with a ... l sites to set a more restrictive value. This host validation is disabled when DEBUG is True or when runnin ... y exhaustion ¶ Previous versions of Django did not validate or limit the form-count data provided by the cl ...
https://man.plustar.jp/django/releases/1.3.6.html - [similar]
クラスベースのビューでミックスインを使用する — Django 4.0.6 ドキュメント 7135
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... t_object () form = self . get_form () if form . is_valid (): return self . form_valid ( form ) else : retur ... n self . form_invalid ( form ) def form_valid ( self , form ): # Here, w ... orm.cleaned_data['message'] return super () . form_valid ( form ) get_success_url() provides somewhere to r ... ch gets used in the default implementation of form_valid() . We have to provide our own post() as noted ear ...
https://man.plustar.jp/django/topics/class-based-views/mixins.html - [similar]
Django 1.4.4 release notes — Django 4.0.6 ドキュメント 7030
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... n how to configure web servers to ensure that only valid Host headers can reach the Django application. How ... ng, ALLOWED_HOSTS , containing an explicit list of valid host/domain names for this site. A request with a ... l sites to set a more restrictive value. This host validation is disabled when DEBUG is True or when runnin ... y exhaustion ¶ Previous versions of Django did not validate or limit the form-count data provided by the cl ...
https://man.plustar.jp/django/releases/1.4.4.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 NEXT