検索

phrase: max: clip:
target: order:
Results of 201 - 210 of about 312 for USE (0.160 sec.)
Constraints reference — Django 4.0.6 ドキュメント 4105
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... o django.db.models . The standard convention is to use from django.db import models and refer to the cons ... verage the existing validate_unique() logic, and thus enable two-stage validation. In addition to Integri ... int to enforce. 例: UniqueConstraint ( fields = [ 'user' ], condition = Q ( status = 'DRAFT' ), name = 'u ... nique_draft_user' ) ensures that each user only has one draft. The ...
https://man.plustar.jp/django/ref/models/constraints.html - [similar]
一対一 (one-to-one) 関係 — Django 4.0.6 ドキュメント 4105
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... o-one) 関係 ¶ To define a one-to-one relationship, use OneToOneField . In this example, a Place optionall ... here." ) There is no restaurant here. You can also use hasattr to avoid the need for exception catching: ... False Set the place using assignment notation. Because place is the primary key on Restaurant, the save w ...
https://man.plustar.jp/django/topics/db/examples/one_to_one.html - [similar]
django.core.files.uploadhandler — Django 4.0.6 ドキュメント 4068
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... hout consuming the rest of the upload. This will cause the browser to show a "connection reset" error. "" ... File upload handler to stream uploads into memory (used for small files). """ def handle_raw_input ( self ... content_length , boundary , encoding = None ): """ Use the content_length to signal whether or not this h ... andler should be used. """ # Check the content-length header to see if ...
https://man.plustar.jp/django/_modules/django/core/files/uploadhandler.html - [similar]
django.utils.decorators — Django 4.0.6 ドキュメント 4068
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... nc'. Also, wrap method.__get__() in a function because new # attributes can't be set on bound method obje ... he arguments to be passed to the middleware_class. Use like:: cache_page = decorator_from_middleware_with ... instance), return a view decorator. This lets you use middleware functionality on a per-view basis. The ...
https://man.plustar.jp/django/_modules/django/utils/decorators.html - [similar]
Installing Geospatial libraries — Django 4.0.6 ドキュメント 4068
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... next » Installing Geospatial libraries ¶ GeoDjango uses and/or provides interfaces for the following open ... oDjango interfaces to GEOS, GDAL, and GeoIP may be used independently of Django. In other words, no datab ... le: $ sudo make install $ sudo ldconfig 注釈 macOS users must install Xcode in order to compile software ... nd is the default internal geometry representation used by GeoDjango (it's behind the "lazy" geometries). ...
https://man.plustar.jp/django/ref/contrib/gis/install/geolibs.html - [similar]
Built-in Views — Django 4.0.6 ドキュメント 4068
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... you in local development. The serve() view can be used to serve any directory you give it. (This view is ... not hardened for production use and should be used only as a development aid; you ... front-end web server). The most likely example is user-uploaded content in MEDIA_ROOT . django.contrib.s ... for static assets and has no built-in handling for user-uploaded files, but you can have Django serve you ...
https://man.plustar.jp/django/ref/views.html - [similar]
Django 1.4.16 release notes — Django 4.0.6 ドキュメント 4068
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... e 1.4.14 security release and a bug preventing the use of some GEOS versions with GeoDjango. Bugfixes ¶ A ...
https://man.plustar.jp/django/releases/1.4.16.html - [similar]
Django 3.0.11 release notes — Django 4.0.6 ドキュメント 4068
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... s ¶ Fixed a regression in Django 3.0.7 that didn't use Subquery() aliases in the GROUP BY clause ( #32152 ...
https://man.plustar.jp/django/releases/3.0.11.html - [similar]
システムチェックフレームワーク — Django 4.0.6 ドキュメント 4068
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ecks are not run as part of the WSGI stack that is used in deployment. If you need to run system checks o ... server, trigger them explicitly using check . Serious errors will prevent Django commands (such as runser ... ported to the console. If you have inspected the cause of a warning and are happy to ignore it, you can h ... list of database aliases whose connections may be used to inspect database level configuration. If datab ...
https://man.plustar.jp/django/topics/checks.html - [similar]
アグリゲーション — Django 4.0.6 ドキュメント 4068
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... annotate ( num_authors = Count ( 'authors' )) When used with an aggregate() clause, a filter has the effe ... o be filtered. The alias for the annotation can be used in filter() and exclude() clauses in the same way ... two annotations with two separate filters you can use the filter argument with any aggregate. For exampl ... annotation or aggregation. It's more efficient to use QuerySet.filter() to exclude rows. The aggregation ...
https://man.plustar.jp/django/topics/db/aggregation.html - [similar]