pywebio / PyWebIO

Write interactive web app in script way.
https://pywebio.readthedocs.io
MIT License
4.54k stars 383 forks source link

关于OutputHandler.reset()总是在闪的问题 #104

Closed blackzw closed 3 years ago

blackzw commented 3 years ago

OutputHandler.reset()每次执行在界面上都是闪烁一下,我的应用里面周期最短的刷新周期有10ms刷新一次的,看有没有办法解决。

wang0618 commented 3 years ago

使用 pywebio.session.set_env(output_animation=False) 关闭一下输出动画试试?

Doc: https://pywebio.readthedocs.io/zh_CN/latest/session.html#pywebio.session.set_env

blackzw commented 3 years ago

使用 pywebio.session.set_env(output_animation=False) 关闭一下输出动画试试?

Doc: https://pywebio.readthedocs.io/zh_CN/latest/session.html#pywebio.session.set_env

谢谢,确实是这个原因导致的。可以关闭了。