検索

phrase: max: clip:
target: order:
Results of 11 - 20 of about 92 for meta (0.035 sec.)
Django 1.10 リリースノート — Django 4.0.6 ドキュメント 7561
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... サブパス (subpath) で動作しているサイトで request.META['SCRIPT_NAME'] が設定されていた場合、各 admin ペー ... virtual fields from its keyword arguments. The new Meta.base_manager_name and Meta.default_manager_name op ... -relational field given in select_related: 'name' _meta.get_fields() returns consistent reverse fields for ... . Model ): foo = models . ForeignKey ( Foo ) class Meta : default_related_name = 'bars' 古いバージョンでは ...
https://man.plustar.jp/django/releases/1.10.html - [similar]
django.core.files.uploadhandler — Django 4.0.6 ドキュメント 7482
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ュメント] def handle_raw_input ( self , input_data , META , content_length , boundary , encoding = None ): " ... ata: An object that supports reading via .read(). :META: ``request.META``. :content_length: The (integer) ... s). """ def handle_raw_input ( self , input_data , META , content_length , boundary , encoding = None ): " ...
https://man.plustar.jp/django/_modules/django/core/files/uploadhandler.html - [similar]
Coding style — Django 4.0.6 ドキュメント 7482
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... = models . CharField ( max_length = 40 ) The class Meta should appear after the fields are defined, with a ... ame = models . CharField ( max_length = 40 ) class Meta : verbose_name_plural = 'people' Don't do this: cl ... ame = models . CharField ( max_length = 40 ) class Meta : verbose_name_plural = 'people' Don't do this, ei ... ther: class Person ( models . Model ): class Meta : verbose_name_plural = 'people' first_name = mode ...
https://man.plustar.jp/django/internals/contributing/writing-code/coding-style.h... - [similar]
Django Deprecation Timeline — Django 4.0.6 ドキュメント 7482
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... nator.QuerySetPaginator will be removed. A model's Meta.ordering will no longer affect GROUP BY queries. d ... nse_headers() will no longer set ETags. The Model._meta.has_auto_field attribute will be removed. url() 's ... upport for query lookups using the model name when Meta.default_related_name is set will be removed. The _ ... ed. The private attribute virtual_fields of Model._meta will be removed. The private keyword arguments vir ...
https://man.plustar.jp/django/internals/deprecation.html - [similar]
モデル — Django 4.0.6 ドキュメント 7389
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... Model index reference Constraints reference Model _meta API Related objects reference Model クラスのリファ ... レンス Model Meta options モデルインスタンスリファレンス QuerySet AP ...
https://man.plustar.jp/django/ref/models/index.html - [similar]
リクエストとレスポンスのオブジェクト — Django 4.0.6 ドキュメント 7309
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ll be a blank dictionary-like object. HttpRequest. META ¶ 利用できるすべての HTTP ヘッダーが格納されたディ ... , any HTTP headers in the request are converted to META keys by converting all characters to uppercase, re ... e, a header called X-Bender would be mapped to the META key HTTP_X_BENDER . Note that runserver strips all ... underscores in the name, so you won't see them in META . This prevents header-spoofing based on ambiguity ...
https://man.plustar.jp/django/ref/request-response.html - [similar]
PostgreSQL specific database constraints — Django 4.0.6 ドキュメント 7137
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... es.constraints module. They are added in the model Meta.constraints option. ExclusionConstraint ¶ class Ex ... = models . BooleanField ( default = False ) class Meta : constraints = [ ExclusionConstraint ( name = 'ex ... = models . BooleanField ( default = False ) class Meta : constraints = [ ExclusionConstraint ( name = 'ex ...
https://man.plustar.jp/django/ref/contrib/postgres/constraints.html - [similar]
Constraints reference — Django 4.0.6 ドキュメント 7137
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... database constraints. They are added in the model Meta.constraints option. Referencing built-in constrain ... a constraint on an abstract base class, since the Meta.constraints option is inherited by subclasses, wit ... ピックへ Model index reference 次のトピックへ Model _meta API 関連キーワード unique , constraints , UniqueCo ...
https://man.plustar.jp/django/ref/models/constraints.html - [similar]
Django 2.2 リリースノート — Django 4.0.6 ドキュメント 7137
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... traints. Constraints are added to models using the Meta.constraints option. マイナーな機能 ¶ django.contri ... Django 2.2.12. Features deprecated in 2.2 ¶ Model Meta.ordering will no longer affect GROUP BY queries ¶ ... A model's Meta.ordering affecting GROUP BY queries (such as .anno ... to add an order_by() to retain the current query. Meta.ordering will be ignored in such queries starting ...
https://man.plustar.jp/django/releases/2.2.html - [similar]
マネージャ — Django 4.0.6 ドキュメント 7137
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... th. You can specify a custom default manager using Meta.default_manager_name . If you're writing some code ... you can tell Django which class to use by setting Meta.base_manager_name . Base managers aren't used when ... t manager on a class is either the one chosen with Meta.default_manager_name , or the first manager declar ... . Model ): # ... objects = CustomManager () class Meta : abstract = True If you use this directly in a su ...
https://man.plustar.jp/django/topics/db/managers.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 NEXT