You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This not really a bug report, but more of a request for information.
We would like to store some data that is returned by the back-end into local storage. But there doesn't seem to be a first-class way to do this as far as I can tell.
All of the examples show that rx.set_local_storage() being called directly by local event handlers like this:
on_click=rx.set_local_storage("key", "value")`
What we're interested in is something like this:
on_click=State.call_backend_api, # works fine
# write the response to local storage, not sure how?
Can you please give me some pointers? Thanks!
The text was updated successfully, but these errors were encountered:
Hello, thanks for the project!
This not really a bug report, but more of a request for information.
We would like to store some data that is returned by the back-end into local storage. But there doesn't seem to be a first-class way to do this as far as I can tell.
All of the examples show that
rx.set_local_storage()
being called directly by local event handlers like this:What we're interested in is something like this:
Can you please give me some pointers? Thanks!
The text was updated successfully, but these errors were encountered: