0
私のフラスコのバックエンドに投稿するJavaScriptのajax関数があります。Flask - 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)
セロリは私が実際に必要なもののように見えます。ありがとう。 –