検索

phrase: max: clip:
target: order:
Results of 151 - 160 of about 171 for we (0.121 sec.)
マネージャ — Django 4.0.6 ドキュメント 4932
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... hod makes sense at the Manager level; for instance we intentionally prevent the QuerySet.delete() method ... ently make instances of your Manager uncopyable. However, if you're overriding __getattr__ or some other ...
https://man.plustar.jp/django/topics/db/managers.html - [similar]
How to write custom lookups — Django 4.0.6 ドキュメント 4875
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... = 27 By using Transform instead of Lookup it means we are able to chain further lookups afterward. So Ex ... ge__lt=27 と同じです。( `` lte`` の場合はSQLの BETWEEN を使うことができます)。 そのため、次のようなSQL ...
https://man.plustar.jp/django/howto/custom-lookups.html - [similar]
How is Django Formed? — Django 4.0.6 ドキュメント 4875
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ase, pre-notify the security distribution list one week before the actual release. Proofread the release ... ing the release process. This stuff starts about a week before the release; most of it can be done any t ... a security release, send out pre-notification one week before the release. The template for that email ... at any time and mark it as inactive. Here are a few examples: example security release announcement , e ...
https://man.plustar.jp/django/internals/howto-release-django.html - [similar]
Django の概要 — Django 4.0.6 ドキュメント 4875
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... wsroom environment, it was designed to make common web development tasks fast and easy. Here's an inform ... al overview of how to write a database-driven web app with Django. このドキュメントの目的は、 Djang ... ードを生成する必要はありません: # Import the models we created from our "news" app >>> from news.models i ... RL scheme is an important detail in a high-quality web application. Django encourages beautiful URL desi ...
https://man.plustar.jp/django/intro/overview.html - [similar]
はじめての Django アプリ作成、その 3 — Django 4.0.6 ドキュメント 4875
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ¶ This tutorial begins where Tutorial 2 left off. We're continuing the web-poll application and will fo ... でください。 オーバービュー ¶ A view is a "type" of web page in your Django application that generally se ... ページのプレースホルダがそれぞれ表示されます。 誰かがWebサイトの 「/polls/34/」 をリクエストすると、 Djang ...
https://man.plustar.jp/django/intro/tutorial03.html - [similar]
The sitemap framework — Django 4.0.6 ドキュメント 4875
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... オーバービュー ¶ A sitemap is an XML file on your website that tells search-engine indexers how frequen ... irectory, it may reference any URL in your site. However, if your sitemap lives at /content/sitemap.xml ... thod or attribute, are: 'always' 'hourly' 'daily' 'weekly' 'monthly' 'yearly' 'never' priority ¶ Optiona ... ault value of 50000 , which is the upper limit allowed in the Sitemaps protocol . i18n ¶ Optional. A boo ...
https://man.plustar.jp/django/ref/contrib/sitemaps.html - [similar]
クロスサイトリクエストフォージェリ (CSRF) 対策 — Django 4.0.6 ドキュメント 4875
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... (); // Does this cookie string begin with the name we want? if ( cookie . substring ( 0 , name . length ... が含まれていない場合に発生します。 The error page, however, is not very friendly, so you may want to provi ... response. This means that the middleware will play well with the cache middleware if it is used as instr ... cheMiddleware goes before all other middleware). However, if you use cache decorators on individual view ...
https://man.plustar.jp/django/ref/csrf.html - [similar]
フォーム API — Django 4.0.6 ドキュメント 4875
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... None ) ¶ The render method is called by __str__ as well as the Form.as_table() , Form.as_p() , and Form. ... ngo 4.0. The render method is called by __str__ as well as by the as_ul() method. All arguments are opti ... ) message BoundField. widget_type ¶ Returns the lowercased class name of the wrapped field's widget, wi ... endered by a Widget : >>> initial = { 'subject' : 'welcome' } >>> unbound_form = ContactForm ( initial = ...
https://man.plustar.jp/django/ref/forms/api.html - [similar]
データベースアクセスの最適化 — Django 4.0.6 ドキュメント 4875
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ation. The overhead of maintaining an index may outweigh any gains in query speed. フィールドタイプの適切 ... な使用。 We will assume you have done the things listed above. ... 保持されるか 。 キャッシュされる属性を理解する ¶ As well as caching of the whole QuerySet , there is cach ... Similarly, do bulk deletes where possible. Note, however, that these bulk update methods cannot call the ...
https://man.plustar.jp/django/topics/db/optimization.html - [similar]
データベースのトランザクション — Django 4.0.6 ドキュメント 4875
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... a given transaction are executed in the order they were registered. Exception handling ¶ If one on-commi ... tions are committed, and the callbacks will run. However TransactionTestCase flushes the database betwee ... n tests, which is significantly slower than TestCase 's isolation. Why no rollback hook? ... sing autocommit, the default behavior of Django. However, once you open a transaction with atomic() , yo ...
https://man.plustar.jp/django/topics/db/transactions.html - [similar]