検索

phrase: max: clip:
target: order:
Results of 1 - 10 of about 66 for 実装 (0.029 sec.)
GIS QuerySet API リファレンス — Django 4.0.6 ドキュメント 16153
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... etely contains the lookup geometry's bounding box. 実装例: Zipcode . objects . filter ( poly__bbcontains = ... g box overlaps the lookup geometry's bounding box. 実装例: Zipcode . objects . filter ( poly__bboverlaps = ... y contained by the lookup geometry's bounding box. 実装例: Zipcode . objects . filter ( poly__contained = g ... etry field spatially contains the lookup geometry. 実装例: Zipcode . objects . filter ( poly__contains = ge ...
https://man.plustar.jp/django/ref/contrib/gis/geoquerysets.html - [similar]
How to write a custom storage class — Django 4.0.6 ドキュメント 9860
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ドと、あなたのストレージクラスに適した他のメソッドを実装しなければなりません。これらのメソッドの詳細について ... こともできます。もし例外が発生してもそのメソッドを未実装のままにしておくことも可能であり、それでもストレージ ... とがわかったとします。その場合は Storage.listdir() の実装をしなくても構いません。 バックエンドとして、単にファ ... のであったとします。この場合は、上のメソッドをすべて実装する必要がありません。 結局、上のメソッドを実装するか ...
https://man.plustar.jp/django/howto/custom-file-storage.html - [similar]
How to create custom django-admin commands — Django 4.0.6 ドキュメント 9860
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... るスクリプトを処理する場合に特に有用です。 コマンドを実装するには、 polls/management/commands/closepoll.py を ... 追加しました。 省略可能な引数を受け入れる ¶ ここまで実装した closepoll に対し、別途コマンドラインオプションを ... ommand クラスのサブクラス化には handle() メソッドの実装が必要です。 属性 ¶ 全ての属性は派生クラスでセットで ... が含まれています。しかし、 handle() メソッドだけは、実装する必要が有ります。 サブクラス内でのコンストラクタの ...
https://man.plustar.jp/django/howto/custom-management-commands.html - [similar]
How to write custom lookups — Django 4.0.6 ドキュメント 9717
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... exact``と逆の動作をするカスタムルックアップ``ne``を実装していきます。 `` Author.objects.filter(name__ne='Ja ... には2つのステップが必要です。まず最初にルックアップを実装し、続いてDjangoに実装したルックアップを認識させる必 ... ラスの register_lookup を呼び出す必要があります。今回実装したルックアップは Field クラスの全てのサブクラスに適 ... 以前にルックアップの登録を行っておく必要があります。実装する場所は models.py ファイル内で行ってもよいし、 Ap ...
https://man.plustar.jp/django/howto/custom-lookups.html - [similar]
QuerySet API リファレンス — Django 4.0.6 ドキュメント 9717
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... Set ごとにこれをオーバーライドすることができます。 実装例: Entry . objects . filter ( pub_date__year = 2005 ... y and value for every field in the database table. 実装例: >>> Blog . objects . values () <QuerySet [{'id': ... to SQL clauses to use to calculate that attribute. 実装例: Entry . objects . extra ( select = { 'is_recent' ... rameters are "AND"ed to any other search criteria. 実装例: Entry . objects . extra ( where = [ "foo='a' OR ...
https://man.plustar.jp/django/ref/models/querysets.html - [similar]
Django でのユーザー認証 — Django 4.0.6 ドキュメント 8861
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... 。このドキュメントのこのセクションでは、デフォルトの実装がどう機能するか、またあなたのプロジェクトのニーズに ... 通する問題の解決策は、サードパーティのパッケージにて実装されます。 パスワード強度のチェック ログイン試行数の ... your installed apps. 使い方 ¶ Django のデフォルトの実装を使用する User オブジェクトを使用する パーミッション ... クエスト内の認証 Admin 内でのユーザー管理 デフォルト実装のための API リファレンス Users と認証をカスタムする ...
https://man.plustar.jp/django/topics/auth/index.html - [similar]
API の安定性 — Django 4.0.6 ドキュメント 8547
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... API は、次のような方法で、明示的に "internal" (内部実装) と明記されています。 ドキュメントの中には内部実装 ... を参照していたり、内部実装であると述べている箇所があります。もし、ドキュメント ... が「これは内部実装である」と述べている場合、その箇所は変更される場合が ... ドキュメント , 内部 , セキュリティ , 変更 , 修正 , 実装 , 意味 , バージョン , 方法 クイック検索 Last updat ...
https://man.plustar.jp/django/misc/api-stability.html - [similar]
Geographic Database Functions — Django 4.0.6 ドキュメント 8319
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... n annotations, aggregations, or filters in Django. 実装例: >>> from django.contrib.gis.db.models.functions ... a GeoJSON structure. See also GeoJSON Serializer . 実装例: >>> City . objects . annotate ( json = AsGeoJSON ... kup Language (GML) representation of the geometry. 実装例: >>> qs = Zipcode . objects . annotate ( gml = As ... kup Language (KML) representation of the geometry. 実装例: >>> qs = Zipcode . objects . annotate ( kml = As ...
https://man.plustar.jp/django/ref/contrib/gis/functions.html - [similar]
Django の admin サイト — Django 4.0.6 ドキュメント 7848
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... スのドリルダウンナビゲーションを含むようになります。 実装例: date_hierarchy = 'pub_date' __ ルックアップを使用 ... 示するフィールド名のタプルです。このキーは必須です。 実装例: { 'fields' : ( 'first_name' , 'last_name' , 'add ... 適用する追加的な CSS を含むリストないしタプルです。 実装例: { 'classes' : ( 'wide' , 'extrapretty' ), } coll ... ントロールするために、 list_display をセットします。 実装例: list_display = ( 'first_name' , 'last_name' ) li ...
https://man.plustar.jp/django/ref/contrib/admin/index.html - [similar]
Django の認証方法のカスタマイズ — Django 4.0.6 ドキュメント 7848
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ) を実行することが挙げられます。 認証バックエンドの実装 ¶ 認証バックエンドは2つの必須メソッド: get_user(us ... ユーザーモデルとそのマネージャは、ルックアップ関数を実装している認証バックエンドが何であっても、ルックアップ ... ドは、魔法のような admin のパーミッションを次のように実装できます。 from django.contrib.auth.backends import ... ザーオブジェクトを引数として取る点があります。 認可の実装の完全なものは django/contrib/auth/backends.py の Mo ...
https://man.plustar.jp/django/topics/auth/customizing.html - [similar]
PREV 1 2 3 4 5 6 7 NEXT