① ドキュメントを見たり
https://docs.djangoproject.com/en/1.6/
② Google 先生に聞いたり
③ 自分で叩いてみても
>>> Group.unit._meta.get_all_field_names()
...
AttributeError: 'SingleRelatedObjectDescriptor' object has no attribute '_meta'
>>> Group.unit.attrgetter()
...
AttributeError: 'SingleRelatedObjectDescriptor' object has no attribute 'attrgetter'
>>> Group._meta.get_field('unit').help_text
...
django.db.models.fields.FieldDoesNotExist: Group has no field named 'unit'
一向にわかりません(´;ω;`)ブワッ
あわせて、どこの資料を参照するべきだったのか、もしご存知でしたら教えていただけると幸いでございます。
コメント(0件)