View source Improve this doc

ngView
directive in module ngRoute

Description

Overview

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.

Usage

This directive can be used as custom element, but be aware of IE restrictions.

as element:
<ng-view
       [onload="{string}"]
       [autoscroll="{string}"]>
</ng-view>
as attribute
<ANY ng-view
     [onload="{string}"]
     [autoscroll="{string}"]>
   ...
</ANY>
as class
<ANY class="ng-view [onload: {string};] [autoscroll: {string};]">
   ...
</ANY>

Directive info

  • This directive creates new scope.
  • This directive executes at priority level 400.

Animations

  • 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.

Parameters

ParamTypeDetails
onload
(optional)
string

Expression to evaluate whenever the view updates.

autoscroll
(optional)
string

Whether ngView should call $anchorScroll to scroll the viewport after the view is updated.

  • 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.

Events

Example

Source













Demo