2016-03-24 4 views
0

Ich versuche, meine Navbar mit angular js zu routen, aber der Inhalt in dieser HTML-Datei wird nicht angezeigt, ich weiß nicht, was das Problem ist.Ich kann nicht den HTML-Inhalt mit ng-Route-Direktive

hier ist mein Register Seite in diesem Register und Login-Funktionalität gibt es auf AngularJS

analysieren
<!DOCTYPE html> 
<html ng-app="AuthApp"> 
<head> 
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.0.7/angular.min.js"></script> 
<script src="http://www.parsecdn.com/js/parse-1.2.12.min.js"></script> 
<!-- start: CSS --> 
<!-- Latest compiled and minified CSS --> 
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous"> 

<!-- Optional theme --> 
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap-theme.min.css" integrity="sha384-fLW2N01lMqjakBkx3l/M9EahuwpSfeNvV63J5ezn3uZzapT0u7EYsXMjQV+0En5r" crossorigin="anonymous"> 

<!-- Latest compiled and minified JavaScript --> 
<script type="text/javascript" src="js/signuplogintoggle.js" charset="utf-8"></script> 
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js" integrity="sha384-0mSbJDEHialfmuBBQP6A4Qrprq5OVfW37PRR3j5ELqxss1yVqOtnepnHVP9aJ7xS" crossorigin="anonymous"></script> 
<link href="css/style.css" rel="stylesheet"> 
<link href="css/sidebarnav.css" rel="stylesheet"> 


<link href='http://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800&subset=latin,cyrillic-ext,latin-ext' rel='stylesheet' type='text/css'> 
<!-- end: CSS --> 

<meta charset=utf-8 /> 
<title>EPPF</title> 
</head> 
<body> 
    <div class="main-container"> 
    <div ng-hide="currentUser"> 

     <form ng-show="scenario == 'Sign up'" class="form-signin" role="form"> 

     <h2 class="form-signin-heading text-center">EPPF</h2> 
     Email: <input type="email" ng-model="user.email" class="form-control" /><br /> 
     Username: <input type="text" ng-model="user.username" class="form-control" /><br /> 
     Password: <input type="password" ng-model="user.password" class="form-control"/><br /> 
     <button ng-click="signUp(user)" class="btn btn-lg btn-primary btn-block">Sign up</button> 
     </br> 
     <a href="#" ng-click='scenario="Log in"'><p class="text-center">Login</p></a> 
     </div> 
     </form> 

    <form ng-show="scenario == 'Log in'" class="form-signin" role="form"> 
     <h2 class="form-signin-heading">Please sign in</h2> 

     Username: <input type="text" ng-model="user.username" class="form-control" role="form"/><br /> 
     Password: <input type="password" ng-model="user.password" class="form-control" role="form" /><br /> 
     <button ng-click="logIn(user)" class="btn btn-lg btn-primary btn-block">Log in</button> 
    </br> 
    <a href="#" ng-click='scenario="Sign up"'><p class="text-center">Sign up</p></a> 
    </form> 
    </div> 

    <div ng-show="currentUser"> 

     <div id="wrapper"> 
      <div class="" ng-controller = "MainCtrl"> 
       <div class="container"> 
        <div class="menu"> 
         <a ng-click="setRoute('home')" class="btn">Home</a> 
         <a ng-click="setRoute('about')" class="btn" >About</a> 
         <a ng-click="setRoute('dashboard')" class="btn">dashboard</a> 
        </div> 
         <div class="ng-view"> 
         </div> 
       </div> 

     </div> 

     <button ng-click="logOut(user)" class="logout">Log out</button> 
    </div> 
    <script type="text/javascript"> 
     Parse.initialize("34olOarYIJtsSy1YcuCdR4RFBPzKthQfAyotWjXP", "vvoqLVt7kMDwuxYliMuOJthEpMvRA3PVFdxC5izY"); 

     angular.module('AuthApp', []) 
     .run(['$rootScope', function($scope) { 
     $scope.scenario = 'Sign up'; 
     $scope.currentUser = Parse.User.current(); 

     $scope.signUp = function(form) { 
     var user = new Parse.User(); 
     user.set("email", form.email); 
     user.set("username", form.username); 
     user.set("password", form.password); 

     user.signUp(null, { 
      success: function(user) { 
      $scope.currentUser = user; 
      $scope.$apply(); 
      }, 
      error: function(user, error) { 
      alert("Unable to sign up: " + error.code + " " + error.message); 
      } 
     }); 
     }; 

     $scope.logIn = function(form) { 
     Parse.User.logIn(form.username, form.password, { 
      success: function(user) { 
      $scope.currentUser = user; 
      $scope.$apply(); 
      }, 
      error: function(user, error) { 
      alert("Unable to log in: " + error.code + " " + error.message); 
      } 
     }); 
     }; 

     $scope.logOut = function(form) { 
     Parse.User.logOut(); 
     $scope.currentUser = null; 
     }; 
     }]); 

    </script> 
</body> 
</html> 

Das ist mein Register Seite und angluar js Code

angular.module('AuthApp',[]). 
    config(function($routeProvider){ 
     $routeProvider. 
     when('/about', {template:'partials/about.html'}). 
     when('/dashboard', {template:'partials/dashboard.html'}). 
     otherwise({redirectTo:'/home',template:'partials/home.html'}) 
    }); 
function MainCtrl($scope,$location) { 
    $scope.setRoute = function(route){ 
    $location.path(route); 
    } 
} 

ist, ich weiß nicht, was das ist Problem Ich kann die Routen in ngview Verzeichnis

nicht sehen

Antwort

0

Ich denke, der ngRoute-Service fehlt dort:

angular.module('AuthApp', ['ngRoute']); 

Siehe doc: https://docs.angularjs.org/api/ngRoute

Auch es annehmen ist templateUrl statt Vorlage zu sein.

angular.module('AuthApp',['ngRoute']) 
 
    .config(function($routeProvider){ 
 
     $routeProvider 
 
     .when('/about', {templateUrl:'partials/about.html'}) 
 
     .when('/dashboard', {templateUrl:'partials/dashboard.html'}) 
 
     .otherwise({redirectTo:'/home',templateUrl:'partials/home.html'}) 
 
    }); 
 
function MainCtrl($scope,$location) { 
 
    $scope.setRoute = function(route){ 
 
    $location.path(route); 
 
    } 
 
}

Auch ich glaube nicht, dass Sie die setRoute Funktion verwendet werden soll. Sie sollten nur die href so gesetzt:

<a href="#/home" class="btn">Home</a> 
+0

Config ist nicht Fehler in Konsolenprotokoll – RajaRaman

+0

Schauen Sie sich das Beispiel von ng-Route definiert, es ist ziemlich geradlinig: https://docs.angularjs.org/ api/ngRoute/service/$ route # Beispiel –

+0

Ich habe auch einige Dinge in meiner Antwort geändert, wenn Sie einen Blick darauf werfen wollen. –

Verwandte Themen