0
所以我有一個在我的JavaScript發佈到我的燒瓶後端的ajax函數。燒瓶 - 我可以在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)
芹菜看起來像我實際需要的東西。謝謝。 –