Verzeichnis suchen
AngularJS API Reference auto auto/service auto/service/$injector auto/service/$provide ng ng/directive ng/directive/a ng/directive/form ng/directive/input ng/directive/input[checkbox] ng/directive/input[date] ng/directive/input[dateTimeLocal] ng/directive/input[email] ng/directive/input[month] ng/directive/input[number] ng/directive/input[radio] ng/directive/input[text] ng/directive/input[time] ng/directive/input[url] ng/directive/input[week] ng/directive/ngApp ng/directive/ngBind ng/directive/ngBindHtml ng/directive/ngBindTemplate ng/directive/ngBlur ng/directive/ngChange ng/directive/ngChecked ng/directive/ngClass ng/directive/ngClassEven ng/directive/ngClassOdd ng/directive/ngClick ng/directive/ngCloak ng/directive/ngController ng/directive/ngCopy ng/directive/ngCsp ng/directive/ngCut ng/directive/ngDblclick ng/directive/ngDisabled ng/directive/ngFocus ng/directive/ngForm ng/directive/ngHide ng/directive/ngHref ng/directive/ngIf ng/directive/ngInclude ng/directive/ngInit ng/directive/ngKeydown ng/directive/ngKeypress ng/directive/ngKeyup ng/directive/ngList ng/directive/ngModel ng/directive/ngModelOptions ng/directive/ngMousedown ng/directive/ngMouseenter ng/directive/ngMouseleave ng/directive/ngMousemove ng/directive/ngMouseover ng/directive/ngMouseup ng/directive/ngNonBindable ng/directive/ngOpen ng/directive/ngPaste ng/directive/ngPluralize ng/directive/ngReadonly ng/directive/ngRepeat ng/directive/ngSelected ng/directive/ngShow ng/directive/ngSrc ng/directive/ngSrcset ng/directive/ngStyle ng/directive/ngSubmit ng/directive/ngSwitch ng/directive/ngTransclude ng/directive/ngValue ng/directive/script ng/directive/select ng/directive/textarea ng/filter ng/filter/currency ng/filter/date ng/filter/filter ng/filter/json ng/filter/limitTo ng/filter/lowercase ng/filter/number ng/filter/orderBy ng/filter/uppercase ng/function ng/function/angular.bind ng/function/angular.bootstrap ng/function/angular.copy ng/function/angular.element ng/function/angular.equals ng/function/angular.extend ng/function/angular.forEach ng/function/angular.fromJson ng/function/angular.identity ng/function/angular.injector ng/function/angular.isArray ng/function/angular.isDate ng/function/angular.isDefined ng/function/angular.isElement ng/function/angular.isFunction ng/function/angular.isNumber ng/function/angular.isObject ng/function/angular.isString ng/function/angular.isUndefined ng/function/angular.lowercase ng/function/angular.module ng/function/angular.noop ng/function/angular.toJson ng/function/angular.uppercase ng/object ng/object/angular.version ng/provider ng/provider/$animateProvider ng/provider/$compileProvider ng/provider/$controllerProvider ng/provider/$filterProvider ng/provider/$httpProvider ng/provider/$interpolateProvider ng/provider/$locationProvider ng/provider/$logProvider ng/provider/$parseProvider ng/provider/$rootScopeProvider ng/provider/$sceDelegateProvider ng/provider/$sceProvider ng/service ng/service/$anchorScroll ng/service/$animate ng/service/$cacheFactory ng/service/$compile ng/service/$controller ng/service/$document ng/service/$exceptionHandler ng/service/$filter ng/service/$http ng/service/$httpBackend ng/service/$interpolate ng/service/$interval ng/service/$locale ng/service/$location ng/service/$log ng/service/$parse ng/service/$q ng/service/$rootElement ng/service/$rootScope ng/service/$sce ng/service/$sceDelegate ng/service/$templateCache ng/service/$timeout ng/service/$window ng/type ng/type/$cacheFactory.Cache ng/type/$compile.directive.Attributes ng/type/$rootScope.Scope ng/type/angular.Module ng/type/form.FormController ng/type/ngModel.NgModelController ngAnimate ngAnimate/provider ngAnimate/provider/$animateProvider ngAnimate/service ngAnimate/service/$animate ngCookies ngCookies/service ngCookies/service/$cookies ngCookies/service/$cookieStore ngMessages ngMessages/directive ngMessages/directive/ngMessage ngMessages/directive/ngMessages ngMock ngMock/function ngMock/function/angular.mock.dump ngMock/function/angular.mock.inject ngMock/function/angular.mock.module ngMock/object ngMock/object/angular.mock ngMock/provider ngMock/provider/$exceptionHandlerProvider ngMock/service ngMock/service/$exceptionHandler ngMock/service/$httpBackend ngMock/service/$interval ngMock/service/$log ngMock/service/$timeout ngMock/type ngMock/type/angular.mock.TzDate ngMockE2E ngMockE2E/service ngMockE2E/service/$httpBackend ngResource ngResource/service ngResource/service/$resource ngRoute ngRoute/directive ngRoute/directive/ngView ngRoute/provider ngRoute/provider/$routeProvider ngRoute/service ngRoute/service/$route ngRoute/service/$routeParams ngSanitize ngSanitize/filter ngSanitize/filter/linky ngSanitize/service ngSanitize/service/$sanitize ngTouch ngTouch/directive ngTouch/directive/ngClick ngTouch/directive/ngSwipeLeft ngTouch/directive/ngSwipeRight ngTouch/service ngTouch/service/$swipe
Figuren

AngularJS: API: ngRoute/provider/$routeProvider


$routeProvider

  1. - $route
  2. - provider in module ngRoute

Used for configuring routes.

示例

参见 $route for an example of configuring and usingngRoute.

依赖

Requires thengRoutemodule to be installed.

用法

$routeProvider();

方法

  • when(path,route);

    Adds a new route definition to the$routeservice.

    参数

    参数 类型 详述
    path string

    Route path (matched against$location.path). If$location.pathcontains redundant trailing slash or is missing one, the route will still match and the$location.pathwill be updated to add or drop the trailing slash to exactly match the route definition.

    • pathcan contain named groups starting with a colon:例如:名称. All characters up to the next slash are matched and stored in$routeParamsunder the given名称when the route matches.
    • pathcan contain named groups starting with a colon and ending with a star:例如:名称*. All characters are eagerly stored in$routeParamsunder the given名称when the route matches.
    • pathcan contain optional named groups with a question mark:例如:名称?.

      例如,routes like/color/:color/largecode/:largecode*\/editwill match/color/brown/largecode/code/with/slashes/editand extract:

    • color:brown

    • largecode:code/with/slashes.
    route Object

    Mapping information to be assigned to$route.currenton route match.

    Object properties:

    • controller{(string|Function()=}– Controller fn that should be associated with newly created scope or the name of a registered controller if passed as a string.
    • controllerAs{string=}– A controller alias name. If present the controller will be published to scope under thecontrollerAsname.
    • template{string=|Function()=}– html template as a string or a function that returns an html template as a string which should be used by ngView or ngInclude directives. This property takes precedence overtemplateUrl.

      Iftemplateis a function, it will be called with the following parameters:

      • {Array.<Object>}- route parameters extracted from the current$location.path()by applying the current route
    • templateUrl{string=|Function()=}– path or function that returns a path to an html template that should be used by ngView.

      IftemplateUrlis a function, it will be called with the following parameters:

      • {Array.<Object>}- route parameters extracted from the current$location.path()by applying the current route
    • resolve-{Object.<string,Function>=}- An optional map of dependencies which should be injected into the controller. If any of these dependencies are promises, the router will wait for them all to be resolved or one to be rejected before the controller is instantiated. If all the promises are resolved successfully, the values of the resolved promises are injected and $routeChangeSuccess event is fired. If any of the promises are rejected the $routeChangeError event is fired. The map object is:

      • key{string}: a name of a dependency to be injected into the controller.
      • factory-{string|Function}: Ifstringthen it is an alias for a service. Otherwise if function, then it is injected and the return value is treated as the dependency. If the result is a promise, it is resolved before its value is injected into the controller. Be aware thatngRoute.$routeParamswill still refer to the previous route within these resolve functions. Use$route.current.paramsto access the new route parameters, instead.
    • redirectTo– {(string|function())=} – value to update $location path with and trigger route redirection.

      IfredirectTois a function, it will be called with the following parameters:

      • {Object.<string>}- route parameters extracted from the current$location.path()by applying the current route templateUrl.
      • {string}- current$location.path()
      • {Object}- current$location.search()

      The customredirectTofunction is expected to return a string which will be used to update$location.path()and$location.search().

    • [reloadOnSearch=true]- {boolean=} - reload route when only$location.search()or$location.hash()changes.

      If the option is set tofalseand url in the browser changes, then$routeUpdateevent is broadcasted on the root scope.

    • [caseInsensitiveMatch=false]- {boolean=} - match routes without being case sensitive

      If the option is set totrue, then the particular route can be matched without being case sensitive

    返回值

    Object

    self

  • otherwise(params);

    Sets route definition that will be used on route change when no other route definition is matched.

    参数

    参数 类型 详述
    params Object

    Mapping information to be assigned to$route.current.

    返回值

    Object

    self


Vorheriger Artikel: Nächster Artikel: