How can i pass the context object from one route to another?
myApp.router.navigate(
'/page1/',
{
context: myContextObjPage1
}
);
In my route for ‘page1’ i want to do some things in js code and then perform a second navigate and send the original page1 context along to it.
function pageOneStuff() {
myApp.router.navigate(
'/page2/',
{
context: myContextObjPage1
}
);
}