發生器流將jQuery/$交()我想的流數據的數據塊從在燒瓶內的發電機後我稱爲與jQuery $ .POST()函數:燒瓶中:從與產量
@app.route('/some/function', methods=['POST'])
def calculateSomething():
def g():
# do something here
yield 'result1'
# do more ...
yield 'result2'
return Response(g())
我調用這個函數從jQuery的:
$.post("/some/function", {"some": $data}, function(data) {
alert(result)
})
這只是給了我一個警告說「result1result2」和每個產量沒有兩個獨立的警報。因此,在所有事情都被「取消」之後調用回調函數。
我怎樣才能正確地流向jQuery的收益?
我想要走的路是在後臺移動長時間運行的進程,將所有內容保存在redis中並讓客戶端不斷更新。網絡套接字或類似的東西是矯枉過正:) –