2

何かが機能する理由を理解しないことほど悪いことはありません。私は数日前にこの質問をして修正を見つけましたが、なぜそれが機能するのかわかりません:

FormsetPOSTでDjangoMultiValueDictKeyErrorをデバッグする方法

フォームセットに、フォームセットのモデルフォームモデルのスーパークラスへのポインタフィールド参照が必要なのはなぜですか?私はこのような他のフォームセットを持っていますが、そうではありません。

これを独立した質問にするために、詳細は次のとおりです。

フォームセットを投稿すると、MultiValueDictKeyErrorが発生します。具体的には:

MultiValueDictKeyError at /core/customers/1/update/documents/
"Key u'documents-0-attachment_ptr' not found in <QueryDict: {u'documents-1-last_modified_date': [u''], u'documents-1-name': [u''], u'documents-MAX_NUM_FORMS': [u''], u'documents-0-attachment_file': [u''], u'documents-INITIAL_FORMS': [u'1'], u'documents-1-document_type': [u''], u'documents-0-notes': [u''], u'documents-1-notes': [u''], u'submit': [u'Submit changes'], u'documents-0-DELETE': [u'on'], u'documents-1-attachment_file': [u''], u'documents-0-document_type': [u''], u'documents-TOTAL_FORMS': [u'2'], u'documents-0-name': [u'test'], u'documents-1-creation_date': [u''], u'documents-0-creation_date': [u'2012-12-01 23:41:48'], u'csrfmiddlewaretoken': [u'NCQ15jA7erX5dAbx20Scr3gWxgaTn3Iq', u'NCQ15jA7erX5dAbx20Scr3gWxgaTn3Iq', u'NCQ15jA7erX5dAbx20Scr3gWxgaTn3Iq'], u'documents-0-last_modified_date': [u'2012-12-01 23:41:48']}>"

documents-0-attachment_ptr重要な部分は、Djangoが投稿データでキーを探していることです。これは紛らわしいです-ドキュメントは添付ファイルのサブクラスです。他のすべての投稿データは期待どおりです。Djangoがフォームセットにポインターデータを必要とするのはなぜですか?

フォームセットで使用されるフォームは次のとおりです。

class DocumentInlineForm(forms.ModelForm):  # pylint: disable=R0924
    attachment_file = forms.FileField(widget=NoDirectoryClearableFileInput)
    notes = forms.CharField(
        required=False,
        widget=forms.Textarea(attrs={'rows': 2,}), 
    )
    helper = DocumentInlineFormHelper()

    class Meta: # pylint: disable=W0232,R0903
        fields = (
            'attachment_file', 
            'creation_date',
            'document_type',
            'last_modified_date',
            'name',
            'notes',
        )
        model = Document

そして、これがドキュメントモデルです。

"""
Handles document model definitions.
"""
from django.db import models
from eee_core.models.attachments import Attachment
from django.db.models.signals import pre_save
from datetime import datetime
from django.utils.timezone import utc

class Document(Attachment):
    """
    A document is an attachment with additional meta data.
    """
    creation_date = models.DateTimeField(
        blank=True, 
        null=True,
    )
    document_type = models.CharField(
        blank=True, 
        choices=(
            ('CONTRACT', 'Contract'),
            ('INVOICE', 'Invoice'),
            ('FACILITY', 'Facility change form'),
            ('LOA', 'Letter of authorization'),
            ('USAGE', 'Usage history document'),
            ('OTHER', 'Other'),
        ),
        default=None, 
        null=True, 
        max_length=8, 
    )
    last_modified_date = models.DateTimeField(
        blank=True, 
        null=True,
    )
    notes = models.TextField(
        blank=True,
        null=True,
    )

    class Meta(Attachment.Meta): # pylint: disable=W0232,R0903
        """
        Sets meta fields for model.
        """
        app_label = 'core'

    def __str__(self):
        return unicode(self).encode('utf-8')

    def __unicode__(self):
        return unicode(self.name)

def pre_save_callback(sender, instance, *args, **kwargs): # pylint: disable=W0613
    if not isinstance(instance, Document):
        return

    if not instance.creation_date:
        instance.creation_date = datetime.utcnow().replace(tzinfo=utc)

    instance.last_modified_date = datetime.utcnow().replace(tzinfo=utc)

pre_save.connect(pre_save_callback, dispatch_uid='document_pre_save')

追加情報:

不思議なことに、フォームセットの最初の投稿は正常に機能します。このエラーが発生したのは、更新投稿(フォームセットに初期フォームがある場合)のみです。フォームセットからフォームを削除しようとしたときにも発生します。

また、フォームセットは、djangoのクリスピーフォームを使用した一般的なインラインフォームセットです。

アップデート

使用したテンプレートコードのリクエストがありました。簡略化されたバージョンは次のとおりです。

{% load crispy_forms_tags %}
{% load url from future %}
<form action="" method="post" enctype="multipart/form-data">
    {{ formset.management_form }}
    {% for subform in formset.forms %}
      {{ subform.id }}
      {% crispy subform %}
    {% endfor %}
    <div class="btn-toolbar">
        <input class='btn btn-primary' type="submit" name="submit" value="Submit changes" />
    </div>
</form>

attachment_ptrフォームのフィールドリストに追加することで、このエラーを止めました。今DocumentInlineFormはそうです:

class DocumentInlineForm(forms.ModelForm):  # pylint: disable=R0924
    attachment_file = forms.FileField(widget=NoDirectoryClearableFileInput)
    notes = forms.CharField(
        required=False,
        widget=forms.Textarea(attrs={'rows': 2,}), 
    )
    helper = DocumentInlineFormHelper()

    class Meta: # pylint: disable=W0232,R0903
        fields = (
            'attachment_ptr',
            'attachment_file', 
            'creation_date',
            'document_type',
            'last_modified_date',
            'name',
            'notes',
        )
        model = Document

たぶんそれは私が前に知らなかったものですが、Djangoはサブクラス化されたモデルを使用するすべての形式でスーパークラスへのポインターを提供することを要求しますか?これは私を驚かせます。

4

1 に答える 1

3

非抽象モデルのサブクラスは、実際には2つのモデル間の1対1の関係にすぎないことを忘れないでください。したがって、当然、Djangoは一方から他方へのある種のポインターを必要とします。そうしないと、子が変更されたときに更新する親テーブルの行を認識できない可能性があります。

于 2012-12-03T20:08:35.073 に答える