2017-06-17 115 views
0

我有一个主要的模块,并在它有一些路线。 我有更多的模块,所有这些都包含在我的主模块中。从我的家庭模块功能之一,我试图路由,但得到错误。与其他功能相同的应用程序完美路由。它已经过了半天,仍然无法解决。下面是代码和错误堆栈请任何帮助将是巨大的如何正确调用角度路由?

var app = angular.module("mainModule", ['ngRoute','homeModule']); 
 

 

 
app.config(function($routeProvider) { 
 
    $routeProvider 
 
    .when("/", { 
 
     controller : "homeController", 
 
     templateUrl : "main.html" 
 
    }) 
 
    .when("/ac-repair", { 
 
     templateUrl : "views/ac-service-repair.html", 
 
     controller : "formController" 
 
     }) 
 
     }); 
 
     
 
     //home module 
 
     var app = angular.module("homeModule", ['ngRoute']); 
 

 

 
    app.controller("homeController", function ($scope, $http, $location, $rootScope) { 
 
    
 
     $scope.$watch("selectedService", function (newValue, oldValue) { 
 
      // your code goes here... 
 
      if (newValue != oldValue) { 
 

 
       var name = $scope.selectedService.name; 
 
       
 
       if (name == "AC Service & Repair") { 
 
     
 
      //working fine here 
 
      $location.path('/ac-repair'); 
 
        return; 
 
       } 
 
      
 
      } 
 
     }); 
 
     //// 
 

 

 
//not working route in this function 
 
     $scope.serviceClicked=function(name) 
 
     { 
 
      
 
     if (name == 'AC Service & Repair') { 
 
     
 
     console.log("reached here!!"); 
 
     
 
     
 
        $location.path('/ac-repair'); 
 
        return; 
 
       } 
 
       
 
        } 
 
    }); 
 
    
 
    // error 
 
    Uncaught Error: Syntax error, unrecognized expression: [name=] 
 
    at Function.ga.error (jquery.min.js:2) 
 
    at ga.tokenize (jquery.min.js:2) 
 
    at ga.select (jquery.min.js:2) 
 
    at Function.ga [as find] (jquery.min.js:2) 
 
    at r.fn.init.find (jquery.min.js:2) 
 
    at r.fn.init (jquery.min.js:2) 
 
    at r (jquery.min.js:2) 
 
    at HTMLAnchorElement.<anonymous> (<anonymous>:6:43) 
 
    at HTMLAnchorElement.dispatch (jquery.min.js:3) 
 
    at HTMLAnchorElement.q.handle (jquery.min.js:3) 
 

//编辑: 我观察到非常密切;它改变了浏览器的路径一秒钟,但后来回来..'/'

回答

0

最后我找到了解决方案。这是一个愚蠢的错误。当我调用函数时,我还将href =“#”和我的代码放在一起。因此,这是一团糟。任何方式非常感谢在这里寻找。我希望这可以帮助任何其他新手初学者