目錄 搜尋
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
文字

AngularJS: API: ngRoute/service/$route


$route

  1. - $routeProvider
  2. - service in module ngRoute

$routeis used for deep-linking URLs to controllers and views (HTML partials). It watches$location.url()and tries to map the path to an existing route definition.

Requires thengRoutemodule to be installed.

You can define routes through $routeProvider's API.

The$routeservice is typically used in conjunction with thengViewdirective and the$routeParamsservice.

依赖

  • $location
  • $routeParams

方法

  • reload();

    Causes$routeservice to reload the current route even if $location hasn't changed.

    As a result of that, ngView creates new scope, reinstantiates the controller.

事件

  • $routeChangeStart

    Broadcasted before a route change. At this point the route services starts resolving all of the dependencies needed for the route change to occur. Typically this involves fetching the view template as well as any dependencies defined inresolveroute property. Once all of the dependencies are resolved$routeChangeSuccessis fired.

    类型:

    broadcast

    目标:

    root scope
  • $routeChangeSuccess

    Broadcasted after a route dependencies are resolved. ngView listens for the directive to instantiate the controller and render the view.

    类型:

    broadcast

    目标:

    root scope
  • $routeChangeError

    Broadcasted if any of the resolve promises are rejected.

    类型:

    broadcast

    目标:

    root scope
  • $routeUpdate

    ThereloadOnSearchproperty has been set to false, and we are reusing the same instance of the Controller.

    类型:

    broadcast

    目标:

    root scope

属性

  • current

    Object

    Reference to the current route definition. The route definition contains:

    • controller: The controller constructor as define in route definition.
    • locals: A map of locals which is used by $controller service for controller instantiation. Thelocalscontain the resolved values of theresolvemap. Additionally thelocalsalso contain:

      • $scope- The current route scope.
      • $template- The current route template HTML.
  • routes

    Object

    Object with all route configuration Objects as its properties.

示例

This example shows how changing the URL hash causes the$routeto match a route against the URL, and thengViewpulls in the partial.

Note that this example is using inlined templates to get it working on jsfiddle as well.

index.html
ng-controller="MainController">Choose:href="Book/Moby">Moby|href="Book/Moby/ch/1">Moby: Ch1|href="Book/Gatsby">Gatsby|href="Book/Gatsby/ch/4?key=value">Gatsby: Ch4|href="Book/Scarlet">Scarlet Letter
ng-view>
/>
$location.path() = {{$location.path()}}
$route.current.templateUrl = {{$route.current.templateUrl}}
$route.current.params = {{$route.current.params}}
$route.current.scope.name = {{$route.current.scope.name}}
$routeParams = {{$routeParams}}
book.html
controller:{{名称}}<br/>BookId:{{params.bookId}}<br/>
chapter.html
controller:{{名称}}<br/>BookId:{{params.bookId}}<br/>ChapterId:{{params.chapterId}}
script.js
angular.module('ngRouteExample',['ngRoute']).controller('MainController',Function($scope,$route,$routeParams,$location){$scope.$route=$route;$scope.$location=$location;$scope.$routeParams=$routeParams;}).controller('BookController',Function($scope,$routeParams){$scope.name="BookController";$scope.params=$routeParams;}).controller('ChapterController',Function($scope,$routeParams){$scope.name="ChapterController";$scope.params=$routeParams;}).config(Function($routeProvider,$locationProvider){$routeProvider.when('/Book/:bookId',{templateUrl:'book.html',controller:'BookController',resolve:{// I will cause a 1 second delaydelay:Function($q,$timeout){vardelay=$q.defer();$timeout(delay.resolve,1000);returndelay.promise;}}}).when('/Book/:bookId/ch/:chapterId',{templateUrl:'chapter.html',controller:'ChapterController'});// configure html5 to get links working on jsfiddle$locationProvider.html5Mode(true);});
protractor.js
it('should load and compile correct template',Function(){element(by.linkText('Moby: Ch1')).click();varcontent=element(by.css('[ng-view]')).getText();expect(content).toMatch(/controller\: ChapterController/);expect(content).toMatch(/Book Id\: Moby/);expect(content).toMatch(/Chapter Id\: 1/);element(by.partialLinkText('Scarlet')).click();content=element(by.css('[ng-view]')).getText();expect(content).toMatch(/controller\: BookController/);expect(content).toMatch(/Book Id\: Scarlet/);});
上一篇: 下一篇: