1
hefish 2017-08-12 20:28:15 +08:00
当然是用 Model 里面提供的方法来调用啊。仔细看例子。
|
3
chengxiao 2017-08-13 09:33:38 +08:00
notes = Notes.objects.filter(author=a,b,c).order_by(-'pub_date')
|
4
chengxiao 2017-08-13 09:38:50 +08:00
如果调用最新 10 篇用户文章 notes = Notes.objects.all().order_by(-‘ pub_date ’)[:10]
|