我想弄清楚怎麼用: order_with_respect_to() 通過一個孩子的關係order_with_respect_to()子關係
class Product(models.Model):
name = models.CharField(max_length=100)
class Affiliate(models.Model):
product = models.ForeignKey(Product)
clicks = models.IntegerField(default=0)
我希望能夠在以顯示產品訂單會員點擊次數。
我看到的所有例子都是通過Parent屬性排序子關係。
也許還有比order_with_respect_to這樣其他()
感謝的一種更好的方式, 布萊恩