我有這樣的代碼和all()
方法和所有其他方法適用於這一點,我到處都找過我能上BaseQuery
paginate()
工作的方法,這也是Query
瓶SQLAlchemy的分頁錯誤
@app.route('/')
@app.route('/index')
@app.route('/blog')
@app.route('/index/<int:page>')
def index(page = 1):
posts = db.session.query(models.Post).paginate(page, RESULTS_PER_PAGE, False)
return render_template('index.html', title="Home", posts=posts)
但這給了我錯誤AttributeError: 'Query' object has no attribute 'paginate'
我到處尋找,我找不到任何解決方案。
感謝這工作!我確實在兩者之間感到困惑。這爲我清理了:) – adarsh