-
Question about
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
|
Beta Was this translation helpful? Give feedback.
-
Question about
|
Beta Was this translation helpful? Give feedback.
-
|
Beta Was this translation helpful? Give feedback.
request.url.path
contains the full path, in your case/gui
. But as your app is mounted on/gui
itself, theui.navigate.to
will prepend this to every navigation request starting with/
. This is correct, because the sub-app should not need to know about the mount-path.Your problem is the "remembering of the current page". It should substract
request.scope['root_path']
before storing it.