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
With versions of trame-server>2.2.0 uploading a file with vuetify.VFileInput throws an error on the client saying Method result cannot be serialized.
trame-server>2.2.0
vuetify.VFileInput
Method result cannot be serialized
But the handle method is still executed correctly.
handle
To reproduce:
from trame.app import get_server from trame.ui.vuetify import SinglePageWithDrawerLayout from trame.widgets import vuetify from trame.app.file_upload import ClientFile server = get_server() with SinglePageWithDrawerLayout(server) as layout: with layout.toolbar: vuetify.VFileInput( v_model=("file_exchange", None), ) @server.state.change("file_exchange") def handle(file_exchange, **kwargs): file = ClientFile(file_exchange) print(file.info) server.start()
The text was updated successfully, but these errors were encountered:
1656aab
No branches or pull requests
With versions of
trame-server>2.2.0
uploading a file withvuetify.VFileInput
throws an error on the client sayingMethod result cannot be serialized
.But the
handle
method is still executed correctly.To reproduce:
The text was updated successfully, but these errors were encountered: