0

いくつかのForeignKey関係を持つモデルがいくつかあります。

forms.pyを介してModelMultipleChoiceFieldウィジェットを追加しました

class VariableFieldForm(ModelForm):
    custom_field = forms.ModelMultipleChoiceField(queryset=VariableField.objects.all(), widget=FilteredSelectMultiple("Custom Fields", is_stacked=False))

    class Meta:
        model = VariableField

保存されたレコードにアクセスしようとしlocalhost:8000/admin/product/subcategory/3/たり、新しいレコードを保存しようとすると、次のトレースバックが表示されます

File "/opt/python2.6/lib/python2.6/site-packages/django/utils/encoding.py" in force_unicode
  71. s = unicode(s)
File "/opt/python2.6/lib/python2.6/site-packages/django/forms/forms.py" in __unicode__
  408. return self.as_widget()
File "/opt/python2.6/lib/python2.6/site-packages/django/forms/forms.py" in as_widget
  439. return widget.render(name, self.value(), attrs=attrs)
File "/opt/python2.6/lib/python2.6/site-packages/django/contrib/admin/widgets.py" in render
  39. output = [super(FilteredSelectMultiple, self).render(name, value, attrs, choices)]
File "/opt/python2.6/lib/python2.6/site-packages/django/forms/widgets.py" in render
  581. options = self.render_options(choices, value)
File "/opt/python2.6/lib/python2.6/site-packages/django/forms/widgets.py" in render_options
  531. selected_choices = set([force_unicode(v) for v in selected_choices])

Exception Type: TemplateSyntaxError at /admin/product/subcategory/3/
Exception Value: Caught TypeError while rendering: 'long' object is not iterable

Django1.3とMySQLを使用しています

それを解決する方法についてのアイデア?

4

1 に答える 1

0

ManyToManyField 関係の代わりに、ForeignKey を使用したことになりました。

これが将来の質問に役立つことを願っています

于 2011-10-20T12:08:40.753 に答える