検索

phrase: max: clip:
target: order:
Results of 1 - 10 of about 169 for order (0.027 sec.)
Model Meta options — Django 4.0.6 ドキュメント 13457
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... for more details. Table name quoting for Oracle In order to meet the 30-char limitation Oracle has on table ... earliest() methods. 実装例: # Latest by ascending order_date. get_latest_by = "order_date" # Latest by pri ... ority descending, order_date ascending. get_latest_by = [ '-priority' , 'o ... tter approach for that situation: プロキシモデル . order_with_respect_to ¶ Options. order_with_respect_to ¶ ...
https://man.plustar.jp/django/ref/models/options.html - [similar]
QuerySet API リファレンス — Django 4.0.6 ドキュメント 12192
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... クションのための2つのパブリックな属性を持っています: ordered ¶ QuerySet が order_by() やモデルのデフォルトの順 ... itself is not needed but it is used for filtering, ordering, or as a part of a complex expression. Not sele ... njunction with annotate() , exclude() , filter() , order_by() , and update() . To use aliased expression wi ... ), ) . aggregate ( Sum ( 'entries' )) filter() and order_by() can take expressions directly, but expression ...
https://man.plustar.jp/django/ref/models/querysets.html - [similar]
フォームセット (Formset) — Django 4.0.6 ドキュメント 10485
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... rating over a formset will render the forms in the order they were created. You can change this order by pr ... in_num empty forms will be displayed. Dealing with ordering and deletion of forms ¶ formset_factory() には、 ... の削除に役立つ 2 つのオプション引数があります。 can_order ¶ BaseFormSet. can_order ¶ デフォルト値: False 並び ... ticleFormSet = formset_factory ( ArticleForm , can_order = True ) >>> formset = ArticleFormSet ( initial = ...
https://man.plustar.jp/django/topics/forms/formsets.html - [similar]
The syndication feed framework — Django 4.0.6 ドキュメント 9593
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ." def items ( self ): return NewsItem . objects . order_by ( '-pub_date' )[: 5 ] def item_title ( self , i ... ml" def items ( self ): return Article . objects . order_by ( '-pub_date' )[: 5 ] def get_context_data ( se ... : return Crime . objects . filter ( beat = obj ) . order_by ( '-crime_date' )[: 30 ] To generate the feed's ... ." def items ( self ): return NewsItem . objects . order_by ( '-pub_date' )[: 5 ] class AtomSiteNewsFeed ( ...
https://man.plustar.jp/django/ref/contrib/syndication.html - [similar]
アグリゲーション — Django 4.0.6 ドキュメント 8903
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... pubs [ 0 ] . below_5 12 # The top 5 publishers, in order by number of books. >>> pubs = Publisher . objects ... . annotate ( num_books = Count ( 'book' )) . order_by ( '-num_books' )[: 5 ] >>> pubs [ 0 ] . num_boo ... QuerySet の操作によって修正可能です。 filter() 、 order_by などに加えて、別の annotate() を追加呼び出しする ... er the same relations with different conditionals. Order of annotate() and filter() clauses ¶ When developi ...
https://man.plustar.jp/django/topics/db/aggregation.html - [similar]
クエリー式 — Django 4.0.6 ドキュメント 8519
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... can be used as part of an update, create, filter, order by, annotation, or aggregate. When an expression o ... ( 'services' ))) # Expressions can also be used in order_by(), either directly Company . objects . order_by ... ( Length ( 'name' ) . asc ()) Company . objects . order_by ( Length ( 'name' ) . desc ()) # or using the d ... d . register_lookup ( Length ) Company . objects . order_by ( 'name__length' ) # Boolean expression can be ...
https://man.plustar.jp/django/ref/models/expressions.html - [similar]
PostgreSQL specific model indexes — Django 4.0.6 ドキュメント 7887
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... 3.2: Positional argument *expressions was added in order to support functional indexes. BrinIndex ¶ class B ... 3.2: Positional argument *expressions was added in order to support functional indexes. BTreeIndex ¶ class ... 3.2: Positional argument *expressions was added in order to support functional indexes. GinIndex ¶ class Gi ... 3.2: Positional argument *expressions was added in order to support functional indexes. GistIndex ¶ class G ...
https://man.plustar.jp/django/ref/contrib/postgres/indexes.html - [similar]
Full text search — Django 4.0.6 ドキュメント 7638
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... he query are possible. It's likely you may wish to order the results by some sort of relevancy. PostgreSQL ... er the match, the higher the value of the rank. To order by relevancy: >>> from django.contrib.postgres.sea ... annotate ( rank = SearchRank ( vector , query )) . order_by ( '-rank' ) [<Entry: Cheese on Toast recipes>, ... ( vector , query )) . filter ( rank__gte = 0.3 ) . order_by ( 'rank' ) The weight should be one of the foll ...
https://man.plustar.jp/django/ref/contrib/postgres/search.html - [similar]
Django 3.1.13 release notes — Django 4.0.6 ドキュメント 7638
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... : Potential SQL injection via unsanitized QuerySet.order_by() input ¶ Unsanitized user input passed to Quer ... ySet.order_by() could bypass intended column reference valida ... : Potential SQL injection via unsanitized QuerySet.order_by() input 前のトピックへ Django 3.1.14 release no ... 連キーワード release , notes , deprecation , input , order , QuerySet , injection , Potential , トピック , pa ...
https://man.plustar.jp/django/releases/3.1.13.html - [similar]
Django 3.2.5 release notes — Django 4.0.6 ドキュメント 7254
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... : Potential SQL injection via unsanitized QuerySet.order_by() input ¶ Unsanitized user input passed to Quer ... ySet.order_by() could bypass intended column reference valida ... : Potential SQL injection via unsanitized QuerySet.order_by() input Bugfixes 前のトピックへ Django 3.2.6 re ... , crash , Fixed , QuerySet , input , deprecation , order , regression , injection クイック検索 Last update: ...
https://man.plustar.jp/django/releases/3.2.5.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 NEXT