提问人:AChichi 提问时间:4/29/2019 最后编辑:AChichi 更新时间:6/7/2019 访问量:1841
使用 Python 的 DataTables 服务器端处理 (Flask/Postgresql)
DataTables server-side processing using Python (Flask/Postgresql)
问:
首先,这是我正在使用的:Python 3、Flask、PostgreSQL、引导主题。
我想做什么?
我有一个包含近 34000 个值的表。问题是,页面加载速度非常慢,导致值数量。如何使用 Python 和 Flask 的服务器端处理(或其他)来提高性能?
法典:
以下是我 main.py 的一部分:
@login_required
def home():
connect() # Connect to the PG database
connect.cur.execute("""SELECT * FROM test""")
test_execute = connect.cur.fetchall()
count_equipement()
return render_template('index.html',
value=test_execute,
value2=count_equipement.nb_equipement,
value3=check_ok.nb_ok,
value4=check_ko.nb_ko)
test_execute获取表的所有值。在我的index.html中,这是我显示数据的方式:
<table class="table table-bordered" id="dataTable" width="100%" cellspacing="0">
<thead>
<tr>
<th>First</th>
<th>Second</th>
<th>Third</th>
<th>Fourth</th>
<th>Fifth</th>
</tr>
</thead>
<tfoot>
<tr>
<th>First</th>
<th>Second</th>
<th>Third</th>
<th>Fourth</th>
<th>Fifth</th>
</tr>
</tfoot>
<tbody>
{% for row in value %}
<tr>
<td>{{row[0]}}</td>
<td><a href="{{ url_for('site', site_id=row[1]) }}">{{row[1]}}</a></td>
<td>{{row[2]}}</td>
<td>{{row[3]}}</td>
<td>{{row[4]}}</td>
</tr>
{% endfor %}
</tbody>
</table>
在我的引导主题中,有一个.js可以正确地对表格进行分页。这是具有 8 个值的结果:
我该怎么做才能进行服务器端处理?我已经检查了这个链接,但我认为我不能在我的情况下应用它......
答:
0赞
AChichi
6/7/2019
#1
这是我问题的答案。(评论是法语的)
@app.route('/stack', )
@app.route('/stack/<int:page>', defaults={'page': 1})
@login_required
def stack(page):
"""
retourne la page 1 par défaut, puis change selon le numéro /4 par ex
"""
connect()
connect.cur.execute("""SELECT COUNT(*) FROM mydatabase""")
count = connect.cur.fetchall()
count = count[0][0]
check.count()
PER_PAGE = 10
offset = ((int(page)-1) * PER_PAGE)
connect.cur.execute("""SELECT *
FROM mydatabase
ORDER BY table1 OFFSET %s LIMIT %s""" % (offset, PER_PAGE))
solutions = connect.cur.fetchall()
# Display a 409 not found page for an out of bounds request
if not solutions and page != 1:
return(render_template('404.html', errmsg="Requested page out of bounds"), 404)
pagination = Pagination(page, PER_PAGE, count)
return(render_template('index.html',
r=request,
value=solutions,
pagination=pagination))
def url_for_other_page(page):
"""
récupère l'url
"""
args = request.view_args.copy()
args['page'] = page
return url_for(request.endpoint, **args)
app.jinja_env.globals['url_for_other_page'] = url_for_other_page
评论