1
我有一個視頻篩選評論
class Video(models.Model)
name = models.CharField()
active = models.BooleanField()
這個簡單的模型目前我篩選出在這樣一個視頻的所有評論。
comments = Comment.objects.for_model(Video)
這裏有一個簡單的方法來排除這個查詢集上視頻「active」爲false的位置。
感謝
謝謝,我現在更聰明,它的作品像一個魅力感謝:D – Azd325