We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Note: For inquiries while using PyWebIO or questions that might be helpful to others, please consider moving to Discussions for posting.
BUG Description
A clear and concise description of what the bug is and how to reproduce it.
If the browser console reports an error or the script throws an exception, please also report them.
Environment Information
python3 --version
python3 -c "import pywebio;print(pywebio.__version__)"
main.py
@config(theme="minty", title=SEO_TITLE, description=SEO_DESCRIPTION) def index() -> None: app.mount("/", FastAPI(routes=webio_routes(index))) app.mount("/feedback/", FastAPI(routes=webio_routes(feedback)))
feedback.py
@seo(SEO_TITLE, SEO_DESCRIPTION) @config(theme="minty", js_file=[GA_JS_FILE], js_code=GA_JS_CODE) def feedback() -> None: run_js(LANDING_PAGE_HEADING) run_js(FOOTER)
endpoint / is ok endpoint /feedback is 404
The text was updated successfully, but these errors were encountered:
@wang0618 can u help
Sorry, something went wrong.
try to open the /feedback/ url ?
/feedback/
这种我都试过了
可能存在的问题还是方法定义上是不是冲突了?
No branches or pull requests
Note: For inquiries while using PyWebIO or questions that might be helpful to others, please consider moving to Discussions for posting.
BUG Description
A clear and concise description of what the bug is and how to reproduce it.
If the browser console reports an error or the script throws an exception, please also report them.
Environment Information
python3 --version
to viewpython3 -c "import pywebio;print(pywebio.__version__)"
to viewmain.py
feedback.py
endpoint / is ok
endpoint /feedback is 404
The text was updated successfully, but these errors were encountered: