ping.py 229 字节 原文件 审查 历史 永久链接 1 2 3 4 5 6 7 8 from flask import jsonify,render_template,url_for from app.api import bp @bp.route('/ping', methods=['GET']) def ping(): '''前端Vue.js用来测试与后端Flask API的连通性''' return render_template('charts.html')