flask分页问题
前提条件:
users和hosts表是多对多的关系。
hosts表中所有数据的分页可以用
allhost = hosts.query.paginate(page, Config.POSTS_PER_PAGE, False)
return render_template('hostlist.html',allhost=allhost,current_user=current_user)
但是如果取某个用户下面的服务器的话,allhosts对象是这样的:
allhost = current_user.hosts
这样的话,我该怎么用paginate来分页?
跪求大神指点
norton
10 years, 2 months ago