比如对书籍先按照章升序排序,再按节升序排序。

代码如下

book = relationship("Book", backref=backref("contents", order_by=(chapter.asc(),section.asc())))