0

自己参照の ForeignKey フィールドがあります。

class Thing(models.Model)
    special_thing = models.ForeignKey(
        'self',
        blank=True,
        null=True
    )

「モノの追加」フォームでは、他の既存のモノに加えて、「このモノ自体」、つまりまだ追加されていないモノを選択する必要があります。そのフィールドを追加してから再度アクセスするようにユーザーに指示することはできません。

これについてどうすればよいですか?

私の現在の考えは、フォームをオーバーライドすることです:

  • 「special_thing」をデフォルトの ModelChoiceField から ChoiceField に変更します
  • 新しい特別な (「マーカー」) 選択肢「*** THIS THING ***」を __init__() のフィールドの選択肢に追加します
  • "*** THIS THING ***" またはクエリセットから検索できる Thing の ID を許可する clean_special_thing() を提供します。
  • save() で、「*** THIS THING ***」が選択された場合は、special_thing=None で Thing を保存し、その後それ自体を設定して再度保存します。それ以外の場合は、指定された ID で Thing を検索し、通常どおり保存します。

ModelAdmin の ModelForm に対してこれを行っています。もっと簡単な方法はありますか?

4

2 に答える 2

0

私はそれらの考えに沿って進んでおり、最後のステップは必要ありません. 代わりに、clean メソッドは選択肢をフォームのインスタンスに設定でき、全体的な労力は非常に合理的なままです。

from django.contrib import admin
from django import forms

from mdoels import Thing

MARKER_THIS_THING = '*** THIS THING ***'


class ThingAdmin(admin.ModelAdmin):

    def get_form(self, request, obj=None, **kwargs):
        """
        Return the Thing ModelForm with an additional choice for the
        'special_thing' field (FK to self) that allows the Add Thing form
        to refer to the newly added instance itself.
        """

        form = super(ThingAdmin, self).get_form(request, obj, **kwargs)

        # The form still has a ModelChoiceField for special_thing, construct
        # new non-model choices from that so we can add the 'this thing' choice
        thing_choices = [c for c in form.base_fields['special_thing'].choices]

        if not obj:
            # Only the Add form needs the special choice
            thing_choices = [(MARKER_THIS_THING, MARKER_THIS_THING)] + thing_choices

        form.base_fields['special_thing'] = forms.ChoiceField(
            choices=thing_choices
        )

        def clean_special_thing(form):
            """
            Now just a simple ChoiceField, convert posted values to
            model instances like a ModelChoiceField does.
            Convert special new 'this thing' choice to be the newly added
            instance.
            """

            data = form.cleaned_data['special_thing']
            instance = getattr(form, 'instance', None)

            if data==MARKER_THIS_THING and not (instance and instance.pk):
                # Referring to new instance itself on Add form
                return instance

            # Return selected model like a ModelChoiceField does
            try:
                data = Thing.objects.get(pk=data)
            except Thing.DoesNotExist:
                raise forms.ValidationError('Invalid choice')
            return data

        # clean_* are not part of ModelAdmin, just of forms and models.
        # So we attach it to the form:
        form.clean_special_thing = clean_special_thing

        return form
于 2013-04-19T21:41:52.697 に答える
0

別の可能な解決策は、テンプレート内のフォームフィールドに別のjQuery (例) を追加することです。***THIS THING***

cleanフォームが送信された後、フォームのメソッド内またはビュー内で選択したオプションをチェックして、それを保存できます。

例えば:

if request.POST:
    if request.POST['special_thing'] == 'myself':
        # do whatever should be done
        ...
于 2013-04-19T07:56:07.877 に答える