WangWeimin

Results 45 comments of WangWeimin

提供一下get_all_query()在pywebio的app中并没有正常工作的复现代码? get_all_query()的逻辑很简单,应该不会出现问题的才对。

`output.put_link(app=...)` 仅支持在 `start_server()` 启动的应用中使用

I will add LaTeX feature to my todo list.

PyWebIO does not support this feature currently. I will add it in todo list. Here is a workaround for now: ```python DBs = ['DB1', 'DB2'] Tables = {'DB1': ['Table1', 'Table2',...

Now you can use the `input_update()` with the `onchange` callback to make dependent input. Doc: https://pywebio.readthedocs.io/en/latest/input.html#pywebio.input.input_update Demo: http://pywebio-demos.demo.wangweimin.site/doc_demo?app=demo-input-update

@errorcode7 the demo address now is https://pywebio-demos.pywebio.online/doc_demo?app=demo-input-update Also, the bug you just found was fixed just now, but the demo server have some cache and still don't work

代码中有没有用到scope?如果将内容输出到一个不存在的scope,将会不产生任何输出。 如果不是的话,请提供一段可以复现的代码以便进一步排错

有可能是因为pywebio在flask server下,是使用的http轮训的方式实现server和浏览器的通讯的,某些请求的http响应可能因为网络原因没有成功发送给浏览器,造成输出遗漏。 建议直接在服务器上使用内置的 `start_server()` 启动服务。如果想要实现高并发,可以启动多个实例,通过nginx来进行负载均衡(这部分后面会出一个具体的教程加到文档里)

Need more detail to understand.

It seems like that you use `path_deploy()` to start pywebio server. Do you call any input or output functions of pywebio before `path_deploy()` call? In Server mode, PyWebIO’s input and...