Is there any way to return dynamic pages? #11387
Unanswered
whispersilk
asked this question in
Q&A
Replies: 1 comment
-
Yep, that's pretty good imo. Alternatively you could use a http server but that would of course expose your frontend on the whole device network if that's a concern. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I know that it's possible to build multi-page applications in Tauri, but I'm having a hard time figuring out if there is a way to render a dynamic page in Rust before returning it, as you might in a traditional web application. Is this possible? To be clear, what I mean is that instead of doing something like:
is it possible to do something like:
Would register_asynchronous_uri_scheme_protocol be a good way to accomplish this (with pages linking to
dummy-protocol:///path/page.html
instead of/path/page.html
)? Or is there a better/other way?Beta Was this translation helpful? Give feedback.
All reactions