Angular手动实现页面跳转

 var app = angular.module("appName",[ngRoute]);
  app.config(function($routeProvider){
      $routeProvider
      .when('/login',{
          templateUrl: 'login.html' //链接对应的html文件 
      })
      .otherwise({
          redircTo: '/login'
      })
  })
  
  app.controller('controllerName', function($scope, $location){
      $scope.goPath = function(){
          $location.path('/login');  //在html中调用这个函数就可以实现跳转
      }
  })

你可能感兴趣的:(Angular手动实现页面跳转)