控制器不是AngularJS的功能

时间:2016-05-08 15:50:43

标签: javascript angularjs routes

我有问题。除了/ vehicules之外,我的路线找不到我的控制器 的 app.js

angular.module('myApp', ['ngRoute', 'ui.grid']);
 angular.module('myApp').config(function($routeProvider) {
     $routeProvider
     // route for the home page
         .when('/', {
         templateUrl: 'views/main.html',
         controller: ''
     })


     .when('/vehicules', {
         templateUrl: 'views/vehicules.html',
         controller: 'VehiculeCtrl'
     })


     .when('/vehicule/:id', {
         templateUrl: 'views/vehicule.html',
         controller: 'VoirVehiculeCtrl'
     })


     .when('/agents', {
         templateUrl: 'views/agents.html',
         controller: 'AgentsCtrl'
     })


     .when('/agences', {
         templateUrl: 'views/agences.html',
         controller: 'AgencesCtrl'
     })


     .when('/status', {
         templateUrl: 'views/status.html',
         controller: 'StatusCtrl'
     })

     .otherwise({
         redirectTo: '/'
     });
});

VoirVehiculeCtrl.js

angular.module('myApp').controller('VoirVehiculeCtrl', function($scope) {});

我的树:

  • 的Javascript
    • 控制器
      • VehiculeCtrl.js
      • VoirVehiculeCtrl.js
    • App.js
  • 浏览

请帮帮我!!抱歉我的英文xD

0 个答案:

没有答案