ngView is a directive that complements the $route service by including the rendered template of the current route into the main layout (index.html) file. Every time the current route changes, the included view changes with it according to the configuration of the $route service.
Requires the ngRoute module to be installed.
<ng-view [onload=""] [autoscroll=""]> ... </ng-view>
<ANY [onload=""] [autoscroll=""]> ... </ANY>
<ANY class="[onload: ;] [autoscroll: ;]"> ... </ANY>
enter - animation is used to bring new content into the browser. leave - animation is used to animate existing content away.
The enter and leave animation occur concurrently.
Click here to learn more about the steps involved in the animation.| Param | Type | Details |
|---|---|---|
| onload (optional) | string | Expression to evaluate whenever the view updates. |
| autoscroll (optional) | string | Whether - If the attribute is not set, disable scrolling. - If the attribute is set without value, enable scrolling. - Otherwise enable scrolling only if the `autoscroll` attribute value evaluated as an expression yields a truthy value. |
Emitted every time the ngView content is reloaded.
© 2010–2016 Google, Inc.
Licensed under the Creative Commons Attribution License 4.0.
https://code.angularjs.org/1.2.32/docs/api/ngRoute/directive/ngView