検索

phrase: max: clip:
target: order:
Results of 41 - 50 of about 312 for use (0.071 sec.)
テストツール — Django 4.0.6 ドキュメント 5691
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ちゃんと渡しているのかをチェックするために使います。 Use in-browser frameworks like Selenium to test render ... ストを組み合わせて行うべきです。 概要と簡単な例 ¶ To use the test client, instantiate django.test.Client an ... Client () >>> response = c . post ( '/login/' , { 'username' : 'john' , 'password' : 'smith' }) >>> respo ... fine with no web server running at all! That's because it avoids the overhead of HTTP and deals directly ...
https://man.plustar.jp/django/topics/testing/tools.html - [similar]
LayerMapping data import utility — Django 4.0.6 ドキュメント 5654
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ), and then inserting into a GeoDjango model. 注釈 Use of LayerMapping requires GDAL. 警告 GIS data sourc ... efine our corresponding Django model (make sure to use migrate ): from django.contrib.gis.db import model ... __str__ ( self ): return 'Name: %s ' % self . name Use LayerMapping to extract all the features and place ... r field. 'poly' : 'POLYGON', # For geometry fields use OGC name. } # The mapping is a dictionary >>> lm = ...
https://man.plustar.jp/django/ref/contrib/gis/layermapping.html - [similar]
Date-based mixins — Django 4.0.6 ドキュメント 5626
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... All the date formatting attributes in these mixins use strftime() format characters. Do not try to use th ... YearMixin ¶ class YearMixin ¶ A mixin that can be used to retrieve and provide parsing information for a ... ソッドと属性 year_format ¶ The strftime() format to use when parsing the year. By default, this is '%Y' . ... _year_format () ¶ Returns the strftime() format to use when parsing the year. Returns year_format by defa ...
https://man.plustar.jp/django/ref/class-based-views/mixins-date-based.html - [similar]
GeoJSON Serializer — Django 4.0.6 ドキュメント 5626
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... o deserializer equivalent. For example, you cannot use loaddata to reload the output produced by this ser ... ializer. If you plan to reload the outputted data, use the plain json serializer instead. In addition to ... string containing the name of a geometry field to use for the geometry key of the GeoJSON feature. This ... more than one geometry field and you don't want to use the first defined geometry field (by default, the ...
https://man.plustar.jp/django/ref/contrib/gis/serializers.html - [similar]
表示形式のローカル化 — Django 4.0.6 ドキュメント 5626
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... 無効になっています。有効化するには、設定ファイル内の USE_L10N = True をセットする必要があります。 注釈 To e ... g with thousand separators, it is necessary to set USE_THOUSAND_SEPARATOR = True in your settings file. A ... lternatively, you could use intcomma to format numbers in your template. 注釈 ... There is a related USE_I18N setting that controls if Django should activa ...
https://man.plustar.jp/django/topics/i18n/formatting.html - [similar]
マイグレーション — Django 4.0.6 ドキュメント 5626
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ostgreSQL 11, adding columns with default values causes a full rewrite of the table, for a time proportio ... nd not a guarantee; any other apps that need to be used to get dependencies correct will be. Apps without ... できます。それには次のように、マネージャクラスの中で use_in_migrations 属性を定義します。 class MyManager ( ... models . Manager ): use_in_migrations = True class MyModel ( models . Mode ...
https://man.plustar.jp/django/topics/migrations.html - [similar]
How to use Django with Daphne — Django 4.0.6 ドキュメント 5589
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... | Index | Modules « previous | up | next » How to use Django with Daphne ¶ Daphne is a pure-Python ASGI ... same directory as your manage.py file. 目次 How to use Django with Daphne Installing Daphne Running Djang ... ックへ How to deploy with ASGI 次のトピックへ How to use Django with Hypercorn 関連キーワード Daphne , How ... , use , ASGI , project , server , called , process , com ...
https://man.plustar.jp/django/howto/deployment/asgi/daphne.html - [similar]
How to use Django with Uvicorn — Django 4.0.6 ドキュメント 5589
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... | Index | Modules « previous | up | next » How to use Django with Uvicorn ¶ Uvicorn is an ASGI server ba ... lease read the Uvicorn documentation . 目次 How to use Django with Uvicorn Installing Uvicorn Running Dja ... ngo in Uvicorn 前のトピックへ How to use Django with Hypercorn 次のトピックへ デプロイチェッ ... クリスト 関連キーワード Uvicorn , How , use , ASGI , command , next , Running , For , Installi ...
https://man.plustar.jp/django/howto/deployment/asgi/uvicorn.html - [similar]
Installing PostGIS — Django 4.0.6 ドキュメント 5589
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... requirements . The psycopg2 module is required for use as the database adapter when using GeoDjango with ... tGIS 2 includes an extension for PostgreSQL that's used to enable spatial functionality: $ createdb <db n ... <db name> > CREATE EXTENSION postgis; The database user must be a superuser in order to run CREATE EXTENS ... n during the migrate process. An alternative is to use a migration operation in your project: from django ...
https://man.plustar.jp/django/ref/contrib/gis/install/postgis.html - [similar]
GeoDjango Tutorial — Django 4.0.6 ドキュメント 5589
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... r viewing the world borders . [1] Some of the code used in this tutorial is taken from and/or inspired by ... stGIS Installing SpatiaLite Create a New Project ¶ Use the standard django-admin script to create a proje ... gis.db.backends.postgis' , 'NAME' : 'geodjango' , 'USER' : 'geo' , }, } In addition, modify the INSTALLED ... d borders data, and unzip. On GNU/Linux platforms, use the following commands:   $ mkdir world/data $ c ...
https://man.plustar.jp/django/ref/contrib/gis/tutorial.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 13 14 NEXT