1

DBバックエンドとしてMongoDBでdjangonon-rel1.3を使用する:

次のように、対応するdjango ModelAdminクラスのMyModelクラスのフィールド(CharField)にフィルターを設定しようとしています。

class MyModelAdmin(admin.ModelAdmin): list_filter = ('myfield',)

しかし、私が得るものは次のとおりです。

TemplateSyntaxError at /admin/myapp/mymodel

Caught DatabaseError while rendering: This query is not supported by the database.

Django MongoDBエンジンはフィルターをサポートしていないようですが、に関するドキュメントが見つかりません。

編集:エラーはテンプレートファイル... / admin / templates / change_list.htmlから発生し、それをスローする行は85行目です。

{% for spec in cl.filter_specs %}{% admin_list_filter cl spec %}{% endfor %}

私のモデルは:

class MyModel(models.Model): myfield=models.CharField(max_length='300')

私の管理者モデルは次のとおりです。

class MyModelAdmin(admin.ModelAdmin): list_filter = ('myfield',)

そしてそれを登録します:

admin.site.register(MyModel, MyModelAdmin)

コードをデバッグするとcheck_query、basecompiler.pyのメソッドによって例外がスローされます。このメソッドは、それself.query.distinct or self.query.extra or self.query.havingがtrueであることを確認してから、例外をスローします(self.query.distinctは、対象のクエリオブジェクトの「True」に等しいため、原因はこれです)。

4

5 に答える 5

1

私は Python/Django 初心者ですが、https://github.com/django/django/blob/stable/1.4.x/django/contrib/admin/filters.py (makeブランチをお使いのバージョンの Django に変更してください)、そして への呼び出しを削除しましたdistinct。大量のものをインポートする必要がありました。その後、動作します。また、@ AlexeyMKの回答からの変更を適用して、再び区別しました。

1.4 の場合:

from django.contrib.admin.filters import FieldListFilter
from django.contrib.admin.util import (get_model_from_relation, reverse_field_path, get_limit_choices_to_from_path, prepare_lookup_value)
from django.utils.translation import ugettext_lazy as _
from django.utils.encoding import smart_unicode, force_unicode

class MongoFieldListFilter(FieldListFilter):
def __init__(self, field, request, params, model, model_admin, field_path):
    self.lookup_kwarg = field_path
    self.lookup_kwarg_isnull = '%s__isnull' % field_path
    self.lookup_val = request.GET.get(self.lookup_kwarg, None)
    self.lookup_val_isnull = request.GET.get(self.lookup_kwarg_isnull,
                                             None)
    parent_model, reverse_path = reverse_field_path(model, field_path)
    queryset = parent_model._default_manager.all()
    # optional feature: limit choices base on existing relationships
    # queryset = queryset.complex_filter(
    #    {'%s__isnull' % reverse_path: False})
    limit_choices_to = get_limit_choices_to_from_path(model, field_path)
    queryset = queryset.filter(limit_choices_to)

    def uniquify(coll):  # enforce uniqueness, preserve order
      seen = set()
      return [x for x in coll if x not in seen and not seen.add(x)]

    self.lookup_choices = uniquify(queryset.order_by(field.name).values_list(field.name, flat=True))

    super(MongoFieldListFilter, self).__init__(field, request, params, model, model_admin, field_path)

def expected_parameters(self):
    return [self.lookup_kwarg, self.lookup_kwarg_isnull]

def choices(self, cl):
    from django.contrib.admin.views.main import EMPTY_CHANGELIST_VALUE
    yield {
        'selected': (self.lookup_val is None
            and self.lookup_val_isnull is None),
        'query_string': cl.get_query_string({},
            [self.lookup_kwarg, self.lookup_kwarg_isnull]),
        'display': _('All'),
    }
    include_none = False
    for val in self.lookup_choices:
        if val is None:
            include_none = True
            continue
        val = smart_unicode(val)
        yield {
            'selected': self.lookup_val == val,
            'query_string': cl.get_query_string({
                self.lookup_kwarg: val,
            }, [self.lookup_kwarg_isnull]),
            'display': val,
        }
    if include_none:
        yield {
            'selected': bool(self.lookup_val_isnull),
            'query_string': cl.get_query_string({
                self.lookup_kwarg_isnull: 'True',
            }, [self.lookup_kwarg]),
            'display': EMPTY_CHANGELIST_VALUE,
        }

次に、このフィルターを次のように使用するように指定します。

list_filter = (('myfield', MongoFieldListFilter),)

パッチが必要ないのでいいです。

于 2013-10-24T21:24:53.797 に答える
0

The error occurs because Django Admin's list_filters use a distinct() when trying to figure out which members belong in the list.

Our (internal, hacky) solution was to patch django non_rel to make the distinct call happen in memory rather then on the DB end. This is by no means the 'correct' solution, and we haven't made a point of testing it in use cases other then ours, but it's better than nothing.

YMMV.

https://github.com/BlueDragonX/django-nonrel/commit/4025327efbe5c17c6b77e0497c2b433819c42918

于 2012-11-07T08:31:41.350 に答える
0

ここで説明されているように、管理フィルターが必要とするクエリは Mongo-Db-Engine ではサポートされていません。

于 2012-11-02T11:03:13.557 に答える
-1

つまり、基本的にはmongoからいくつかのフィールドだけを取得したいのですか?

チュートリアルを見ると、Django ビューまたはテンプレートでこれを行う必要があると思います

詳細については、 Google グループを試すこともできます

于 2012-10-30T14:16:42.850 に答える
-1

何型myfieldですか?関係で注文することはできません。

于 2012-10-30T14:19:36.207 に答える