私は他のすべてのメソッドは、この上で動作し、このコードとall()
方法とがあると私はすべての上を見ていると私ができることも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)
あるBaseQuery
上で動作しますpaginate()
方法が、これは私にエラーを与えるAttributeError: 'Query' object has no attribute 'paginate'
私はどこでも見てきましたが、私はこれに対する解決策を見つけることができません。私はあなたが混同されている場所、これがあると思い、あなたの質問...
that the method paginate() works on BaseQuery which is also Query
から
ありがとうございました!私は本当に2つの間で混乱していた。これは私のためにそれをクリア:) – adarsh