別のインスタンスでモデルオブジェクトインスタンスを取得しようとしていますが、このエラーが発生します:
Manager isn't accessible via topic instance
これが私のモデルです:
class forum(models.Model):
# Some attributs
class topic(models.Model):
# Some attributs
class post(models.Model):
# Some attributs
def delete(self):
forum = self.topic.forum
super(post, self).delete()
forum.topic_count = topic.objects.filter(forum = forum).count()
これが私の見解です:
def test(request, post_id):
post = topic.objects.get(id = int(topic_id))
post.delete()
そして私は得る:
post.delete()
forum.topic_count = topic.objects.filter(forum = forum).count()
Manager isn't accessible via topic instances
topic
実際のモデルクラスであり、彼が提供したコードによるとインスタンスではないようです。