Lazy engine doesn't handle query params properly
Closed this issue · 0 comments
nightire commented
I stumbled upon that the lazy engine cannot handle the query params very well.
For example, a host app mounted an engine as blog
, so /blog
will load this engine lazily. Then:
- If we input
/blog?foo=123
directly,BlogController.foo
will benull
, but it should be123
. - If we transition to
/blog?foo=123
from the host app, thenBlogController.foo
will be123
.
Not sure if this is a bug or intentional.