The UI Router manages states for AngularJS applications and supports nested views as well as multiple named views for the same state. Multiple named views are used like this:
<body>
<div ui-view="viewA"></div>
<div ui-view="viewB"></div>
</body>
You can also pass URL-parameters into states when navigating between states via ui-sref
(Check this question: Angular ui-router - how to access parameters in nested, named view, passed from the parent template?).
Q: Is it possible to pass parameters to a named view using ui-view
which then is propagated to the according state?
Q: How do i pass parameters if i switch between states by using $state.go(newState)
?
A:
$state.go(newState, { Param: 123 });