Last updated
Was this helpful?
AUR3155: Failed to resolve RouteContext from node %s; error: %s
This error is logged when the router attempts to resolve a RouteContext from a DOM node, but resolution fails (for example because the node is not associated with an Aurelia controller or an unexpected error occurs while walking up the tree).
Passing a DOM node outside of the Aurelia app to an API that tries to resolve RouteContext.
Ensure the node you pass is part of the Aurelia app’s DOM.
If you are manipulating the DOM directly, prefer router/Aurelia composition APIs so controller associations are preserved.
Inspect the second %s value (the error) for the underlying cause.
Last updated
Was this helpful?
Was this helpful?