我正在构建Flask应用程序,以实现以下目的:
print('')
循环打印输出。我已经搜索了许多有关多线程,进程,芹菜的信息,但似乎找不到解决方案。
更新我到目前为止的情况:
pp=None
@simple_page.route('/stop')
def stopApp():
pp.join()
@simple_page.route('/run')
def runApp():
pp = Process(target=theAppLoop, args=('',))
pp.daemon = True
pp.start()
@simple_page.route('/update')
def updateMonitor():
#return pp's print('')?
def theAppLoop(s):
while True:
run_cycle()
def run_cycle():
#call others func and those func will do print('')
答案 0 :(得分:0)
经过几次搜索后,发现“烧瓶运行循环并在html中更新其输出的问题 “,我通过套接字解决了