検索

phrase: max: clip:
target: order:
Results of 1 - 10 of about 570 for update (0.027 sec.)
QuerySet API リファレンス — Django 4.0.6 ドキュメント 11568
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... notate() , exclude() , filter() , order_by() , and update() . To use aliased expression with other methods ( ... hanged since a QuerySet was evaluated, you can get updated results for the same query by calling all() on a ... >> Entry . objects . using ( 'backup' ) select_for_update() ¶ select_for_update ( nowait = False , skip_lock ... nd of the transaction, generating a SELECT ... FOR UPDATE SQL statement on supported databases. 例: from dja ...
https://man.plustar.jp/django/ref/models/querysets.html - [similar]
モデルインスタンスリファレンス — Django 4.0.6 ドキュメント 11303
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... するには fields 引数を用いる事ができます。 例えば、 update() の呼び出しによって期待する更新が行われたかをテス ... め、以下のようなテストを書くことができます: def test_update_result ( self ): obj = MyModel . objects . create ... 1 ) MyModel . objects . filter ( pk = obj . pk ) . update ( val = F ( 'val' ) + 1 ) # At this point obj.val ... is still 1, but the value in the database # was updated to 2. The object's updated value needs to be relo ...
https://man.plustar.jp/django/ref/models/instances.html - [similar]
How is Django Formed? — Django 4.0.6 ドキュメント 8532
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... free to streamline or otherwise make changes, but update this document accordingly! オーバービュー ¶ There ... ses: either a final release (e.g. 1.5) or a bugfix update (e.g. 1.5.1). Pre-releases: e.g. 1.6 alpha, beta, ... errors. Draft a blog post and email announcement. Update version numbers and create the release package(s). ... e blog entry and send out the email announcements. Update version numbers post-release. There are a lot of d ...
https://man.plustar.jp/django/internals/howto-release-django.html - [similar]
Admin actions — Django 4.0.6 ドキュメント 7813
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... task we might perform with a model like this is to update an article's status from "draft" to "published". W ... ed ( modeladmin , request , queryset ): queryset . update ( status = 'p' ) 注釈 For the best performance, we ... 're using the queryset's update method . Other types of actions might need to deal ... ed ( modeladmin , request , queryset ): queryset . update ( status = 'p' ) 注釈 This might look familiar; th ...
https://man.plustar.jp/django/ref/contrib/admin/actions.html - [similar]
django.utils.decorators — Django 4.0.6 ドキュメント 6745
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... rators for views." from functools import partial , update_wrapper , wraps class classonlymethod ( classmetho ... return super () . __get__ ( instance , cls ) def _update_method_wrapper ( _wrapper , decorator ): # _multi_ ... @decorator def dummy ( * args , ** kwargs ): pass update_wrapper ( _wrapper , dummy ) def _multi_decorate ( ... he function it decorates. for dec in decorators : _update_method_wrapper ( _wrapper , dec ) # Preserve any e ...
https://man.plustar.jp/django/_modules/django/utils/decorators.html - [similar]
Django 1.6.3 release notes — Django 4.0.6 ドキュメント 6208
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... sField IPAddressField These three fields have been updated to convert their arguments to the correct types b ... conversions prior to executing queries. select_for_update() requires a transaction ¶ Historically, queries t ... hat use select_for_update() could be executed in autocommit mode, outside of ... n in such a context voids the effect of select_for_update() . It is, therefore, assumed now to be an error a ...
https://man.plustar.jp/django/releases/1.6.3.html - [similar]
Django 1.7 release notes — Django 4.0.6 ドキュメント 6117
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... port for schema migrations. It allows models to be updated, changed, and deleted by creating migration files ... ayers library version included in widgets has been updated from 2.11 to 2.13. Prepared geometries now also s ... rib.syndication ¶ The Atom1Feed syndication feed's updated element now utilizes updateddate instead of pubda ... r automatically reloads when a translation file is updated, i.e. after running compilemessages . All HTTP re ...
https://man.plustar.jp/django/releases/1.7.html - [similar]
django.contrib.messages.middleware — Django 4.0.6 ドキュメント 6026
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... rocess_response ( self , request , response ): """ Update the storage backend (i.e., save the messages). Rai ... ages" ): unstored_messages = request . _messages . update ( response ) if unstored_messages and settings . D ... ld be stored." ) return response クイック検索 Last update: 2022年6月01日 up ...
https://man.plustar.jp/django/_modules/django/contrib/messages/middleware.html - [similar]
Related objects reference — Django 4.0.6 ドキュメント 6026
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... in the case of a ForeignKey relationship, QuerySet.update() is used to perform the update. This requires the ... nt to instead have the related manager perform the update by calling e.save() . Using add() with a many-to-m ... ve() is called in the example above to perform the update. Using remove() with a many-to-many relationship, ... orm the operation. If True (the default), QuerySet.update() is used. If bulk=False , the save() method of ea ...
https://man.plustar.jp/django/ref/models/relations.html - [similar]
Django 1.11.16 リリースノート — Django 4.0.6 ドキュメント 6026
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... Bugfixes ¶ データ損失に繋がる可能性がある QuerySet.update_or_create() の競合状態を修正しました ( #29499 )。 ... ード 損失 , 修正 , トピック , previous , up , next , update , データ , Bugfixes , クイック クイック検索 Last u ...
https://man.plustar.jp/django/releases/1.11.16.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 NEXT