検索

phrase: max: clip:
target: order:
Results of 151 - 160 of about 331 for using (0.102 sec.)
GeoDjango Database API — Django 4.0.6 ドキュメント 4336
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ly transformed into the SRID of the model's field, using the spatial database's transform procedure: >>> po ... 4326)) Thus, geometry parameters may be passed in using the GEOSGeometry object, WKT (Well Known Text [1] ... ill implicitly convert the input into a GDALRaster using lazy-evaluation. The raster field will therefore a ... er performance on WGS84 distance queries, consider using geography columns in your database instead because ...
https://man.plustar.jp/django/ref/contrib/gis/db-api.html - [similar]
Database Functions — Django 4.0.6 ドキュメント 4336
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... er expressions like aggregate functions . We'll be using the following model in examples of each function: ... urn null . The PostgreSQL behavior can be emulated using Coalesce if you know a sensible minimum value to p ... urn null . The PostgreSQL behavior can be emulated using Coalesce if you know a sensible maximum value to p ... L as the first argument. Date functions ¶ We'll be using the following model in examples of each function: ...
https://man.plustar.jp/django/ref/models/database-functions.html - [similar]
Unicode data — Django 4.0.6 ドキュメント 4336
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... t's under the control of the person installing and using your application -- and if that person chooses a d ... type of string-like object you may encounter when using Django. The framework's internationalization featu ... s, force_str() forces those objects to a string (causing the translation to occur). Normally, you'll want t ... . One requirement of URLs is that they are encoded using only ASCII characters. However, in an internationa ...
https://man.plustar.jp/django/ref/unicode.html - [similar]
Django 1.10.3 release notes — Django 4.0.6 ドキュメント 4336
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... opped after the test suite completes, but not when using the manage.py test --keepdb option or if the user ... ch_size ( #27385 ). Prevented i18n_patterns() from using too much of the URL as the language to fix a use c ...
https://man.plustar.jp/django/releases/1.10.3.html - [similar]
Django 1.11.3 リリースノート — Django 4.0.6 ドキュメント 4336
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... accepts **kwargs ( #28265 ). Fixed a regression causing Model.__init__() to crash if a field has an instan ... ncorrect DisallowedModelAdminLookup exception when using a nested reverse relation in list_filter ( #28262 ... ore difficult. Casting is now done in the template using the |stringformat:'s' filter. Prevented a primary ...
https://man.plustar.jp/django/releases/1.11.3.html - [similar]
Django 1.4.21 release notes — Django 4.0.6 ドキュメント 4336
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... eys, potentially filling up the session store or causing other users' session records to be evicted. The bu ... integer() function is now stricter as it validates using a regular expression instead of simply casting the ... value using int() and checking if an exception was raised. 目次 ...
https://man.plustar.jp/django/releases/1.4.21.html - [similar]
Djangoの認証システムを使用する — Django 4.0.6 ドキュメント 4336
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ます。 スーパーユーザを作成する ¶ Create superusers using the createsuperuser command: $ python manage.py cr ... object, but also per specific object instance. By using the has_view_permission() , has_add_permission() , ... me way as concrete models. Permissions are created using the own content type of the proxy model. Proxy mod ... is removed. This is to prevent another person from using the same web browser to log in and have access to ...
https://man.plustar.jp/django/topics/auth/default.html - [similar]
データベースアクセスの最適化 — Django 4.0.6 ドキュメント 4336
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... adding indexes to fields that you frequently query using filter() , exclude() , order_by() , etc. as indexe ... 限をかけることでこれを完全に防ぐことができます。 So using the example blog models : >>> entry = Entry . obje ... single row in the results, even if it ends up only using a few columns. The defer() and only() methods are ... e use of len(members) calls QuerySet.__len__() , reusing the result cache, so again, no database queries ar ...
https://man.plustar.jp/django/topics/db/optimization.html - [similar]
Django のショートカット関数 — Django 4.0.6 ドキュメント 4336
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ext = None , content_type = None , status = None , using = None ) ¶ Combines a given template with a given ... he status code for the response. Defaults to 200 . using The NAME of a template engine to use for loading t ... eyword arguments; the URL will be reverse resolved using the reverse() method: def my_view ( request ): ... ...
https://man.plustar.jp/django/topics/http/shortcuts.html - [similar]
How to create custom model fields — Django 4.0.6 ドキュメント 4290
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... the model field -- that is, when you retrieve data using QuerySet methods like get() , filter() , and exclu ... Converting Python objects to query values ¶ Since using a database requires conversion in both ways, if yo ... CharField' No matter which database backend we are using, this will mean that migrate and other SQL command ... t known to Django for the database backend you are using -- that is, it doesn't appear in django.db.backend ...
https://man.plustar.jp/django/howto/custom-model-fields.html - [similar]