Class RouteInfo

public

A RouteInfo is an object that contains metadata about a specific route within a Transition. It is read-only and internally immutable. It is also not observable, because a Transition instance is never changed after creation.

Show:

Module: ember

A reference to the child route's RouteInfo. This can be used to traverse downward to the leafmost RouteInfo.

Module: ember

The final segment of the fully-qualified name of the route, like "index"

Module: ember

Will contain the result Route#buildRouteInfoMetadata for the corresponding Route.

Module: ember

The dot-separated, fully-qualified name of the route, like "people.index".

Module: ember

The ordered list of the names of the params required for this route. It will contain the same strings as Object.keys(params), but here the order is significant. This allows users to correctly pass params into routes programmatically.

Module: ember

The values of the route's parameters. These are the same params that are received as arguments to the route's model hook. Contains only the parameters valid for this route, if any (params for parent or child routes are not merged).

Module: ember

A reference to the parent route's RouteInfo. This can be used to traverse upward to the topmost RouteInfo.

Module: ember

The values of any queryParams on this route.