所以我在我的javascript中有一个ajax函数,发布到我的烧瓶后端。
我可以成功地调用/ another_ajax_url吗?
@app.route('/myroute', methods=['POST, GET'])
def test():
a = 2 + 2
requests.post('/another_ajax_url', data = a)
#do the other stuff and return to /myroute
b = 3 + 3
return jsonify(b=b)