検索

phrase: max: clip:
target: order:
Results of 51 - 60 of about 144 for type (0.051 sec.)
Django 3.2 release notes — Django 4.0.6 ドキュメント 5864
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... リケーションを設定する for full details. Customizing type of auto-created primary keys ¶ When defining a mod ... ary_key=True an implicit primary key is added. The type of this implicit primary key can now be controlled ... creased from 71 to 128 bits. django.contrib.contenttypes ¶ The new absolute_max argument for generic_inlin ... eld to the appropriate Field subclass based on the type of its provided value for bool , bytes , float , i ...
https://man.plustar.jp/django/releases/3.2.html - [similar]
Django Utils — Django 4.0.6 ドキュメント 5782
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ou must implement detection of the current request type to use this decorator. See asynchronous middleware ... nvert (some) non-string-like objects. is_protected_type ( obj ) [ソース] ¶ Determine if the object instanc ... e is of a protected type. Objects of protected types are preserved as-is wh ... number of extra arguments ( *args ) specifying the type(s) that the original function can return. A common ...
https://man.plustar.jp/django/ref/utils.html - [similar]
Django 1.10 リリースノート — Django 4.0.6 ドキュメント 5782
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... renced in queryset filtering. The new Field.rel_db_type() method returns the database column data type for ... きるようになりました。 Added the HttpRequest.content_type and content_params attributes which are parsed fro ... m the CONTENT_TYPE header. request.COOKIES のパーサーが簡略化され、ブ ... s AreaField uses an unspecified underlying numeric type that could in practice be any numeric Python type. ...
https://man.plustar.jp/django/releases/1.10.html - [similar]
How to create CSV output — Django 4.0.6 ドキュメント 5746
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... iate CSV header. response = HttpResponse ( content_type = 'text/csv' , headers = { 'Content-Disposition' : ... iter . writerow ( row ) for row in rows ), content_type = "text/csv" , headers = { 'Content-Disposition' : ... iate CSV header. response = HttpResponse ( content_type = 'text/csv' , headers = { 'Content-Disposition' : ... していることです。残りのコード部分 -- 例えば content_type='text/csv' -- は同じです。 そして、以下のテンプレー ...
https://man.plustar.jp/django/howto/outputting-csv.html - [similar]
QuerySet API リファレンス — Django 4.0.6 ドキュメント 5746
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ues() doesn't make sense, so doing so will raise a TypeError . Combining transforms and aggregates require ... ransform has been registered on the relevant field type the first annotate() can be omitted, thus the foll ... ect in the result list is "truncated" to the given type . "year" returns a list of all distinct year value ... ect in the result list is "truncated" to the given type . order , which defaults to 'ASC' , should be eith ...
https://man.plustar.jp/django/ref/models/querysets.html - [similar]
Django 2.2 リリースノート — Django 4.0.6 ドキュメント 5711
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ow has the autosummarize parameter. The new search_type parameter of SearchQuery allows searching for a ph ... f migration operations that will be performed. NoneType can now be serialized in migrations. You can now r ... serialization of list and tuple data when content_type='application/json' . The new ORACLE_MANAGED_FILES ... cted (Python 3.6 and later), such usage now raises TypeError: Cannot assign the same cached_property to tw ...
https://man.plustar.jp/django/releases/2.2.html - [similar]
Django 3.0 リリースノート — Django 4.0.6 ドキュメント 5711
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... tions for model field choices ¶ Custom enumeration types TextChoices , IntegerChoices , and Choices are no ... ine Field.choices . TextChoices and IntegerChoices types are provided for text and integer fields. The Cho ... g a compatible enumeration for other concrete data types. These custom enumeration types support human-rea ... on the enumeration or its members. See Enumeration types for more details and examples. マイナーな機能 ¶ d ...
https://man.plustar.jp/django/releases/3.0.html - [similar]
Django 1.7.2 release notes — Django 4.0.6 ドキュメント 5663
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ed in a ModelForm ( #23795 ). Fixed a custom field type validation error with MySQL backend when db_type r ... code characters ( #23946 ). Fixed serialization of type when adding a deconstruct() method ( #23950 ). Pre ...
https://man.plustar.jp/django/releases/1.7.2.html - [similar]
Django 3.1 release notes — Django 4.0.6 ドキュメント 5663
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... hm remains until Django 4.0. django.contrib.contenttypes ¶ The new remove_stale_contenttypes --include-sta ... le-apps option allows removing stale content types from previously installed apps that have been rem ... r_inf lookups allow querying RangeField by a bound type. rangefield.contained_by now supports SmallAutoFie ... ield . SearchQuery now supports 'websearch' search type on PostgreSQL 11+. SearchQuery.value now supports ...
https://man.plustar.jp/django/releases/3.1.html - [similar]
Generic editing ビュー — Django 4.0.6 ドキュメント 5628
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... "post" > {% csrf_token %} {{ form.as_p }} < input type = "submit" value = "Send message" > </ form > clas ... "post" > {% csrf_token %} {{ form.as_p }} < input type = "submit" value = "Save" > </ form > class django ... "post" > {% csrf_token %} {{ form.as_p }} < input type = "submit" value = "Update" > </ form > class djan ... delete " {{ object }} "? </ p > {{ form }} < input type = "submit" value = "Confirm" > </ form > class dja ...
https://man.plustar.jp/django/ref/class-based-views/generic-editing.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 NEXT