简体   繁体   English

路由在angularjs中不起作用

[英]Routing does not work in angularjs

I am very new to angular js. 我对angular js非常陌生。 I have implemented routing in angular js but it does not redirect me to the pages I have stated in the route.js here is the code: Route.js 我已经在angular js中实现了路由,但是它没有将我重定向到route.js中所述的页面,这里是代码:Route.js

var sampleApp = angular.module('sampleApp', []);

sampleApp.config(['$routeProvider',
  function($routeProvider) {
$routeProvider.
  when('/getplaces', {
    templateUrl: 'getplaces.html',
    controller: 'ListCtrl',

  }).
  when('/getuncategorisedplaces', {
    templateUrl: 'list.html',
    controller: 'uncatCtrl'
  })
  .otherwise ({
redirectTo: '/getplaces'
  });

}]);

Controller.js Controller.js

  function uncatCtrl($scope, $http) {
  $http.get('http://94.125.132.253:8000/getuncategorisedplaces').success(function (data) {
  $scope.places = data;
   console.log(data);
    }
    )}
// get places
  function ListCtrl($scope, $http) {
  $http.get('http://94.125.132.253:8000/getplaces').success(function (data) {

   $scope.places = data;
  console.log("Successful")
 console.log(data);
  }
  )}

HTML code includes ng view and href such as href="#getplaces" HTML代码包括ng视图和href,例如href =“#getplaces”

<body ng-app="sampleApp" >
<div class="container">
    <div class="row">
    <div class="col-md-3">
       <ul class="nav">
            <li> <a class= "linha" href="#getplaces"> Get places </a></li>
            <li><a class= "linha" href="post.html"> Post a movie </a></li>
                            <li><a class= "linha" href="#getuncategorisedplaces">List of uncategorised places  </a></li>
        </ul>
    </div>
    <div class="col-md-9">
        <div ng-view></div>

    </div>

    </div>

Check that you have both scripts included (angular and ngroute) 检查是否同时包含两个脚本(角度和ngroute)

<script src='angular.js'>
<script src='angular-route.js'>

Then check that you are including that module in your app: 然后检查您的应用程序中是否包含该模块:

var sampleApp = angular.module('sampleApp', ['ngRoute']);

As of Angular 1.2.0, angular-route is a separate module 从Angular 1.2.0开始,angular-route是一个单独的模块

refer to the angular documentation: 请参阅角度文档:

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

Here is an example code that i have written a while ago. 这是我前一段时间编写的示例代码。

var app = angular.module('test', ['ngRoute','ngGrid','ngBootstrap', 'http-auth-interceptor','ui.bootstrap','ngCookies','ngSanitize']).
config(['$routeProvider', function($routeProvider) {
    $routeProvider.
        when('/sign-in', {templateUrl: 'partials/login/signin.html', controller: LoginCtrl}).
        when('/admin/sign-in', {templateUrl: 'partials/login/userManagementSignin.html', controller: LoginCtrl}).
        otherwise({redirectTo: '/dashboard'});
}]);

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM