私はこのコードとall()
メソッドを持っており、他のすべてのメソッドはこれでpaginate()
機能しBaseQuery
ます。Query
@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'
しかし、これにより、どこでも見たエラーが発生し、これに対する解決策が見つかりません。