Angularjs:Controller被多次调用

时间:2013-10-04 09:27:06

标签: javascript angularjs controller

出于某种原因,当我在资源1和资源2之间切换时,我的控制器被双重调用。

以下是代码:

的index.html

<!DOCTYPE html>
<html ng-app="multiple_calls">

  <head>
    <meta charset="utf-8" />
    <title>AngularJS Plunker</title>
    <link rel="stylesheet" href="style.css" />
    <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.0.7/angular.min.js"></script>
    <script src="app.js"></script>
  </head>

  <body ng-controller="MainCtrl">
    <a href="#res/1">1</a>
    <a href="#res/2">2</a>

    <div ng-view>
    </div>
  </body>

</html>

app.js

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

app.
  config(['$routeProvider', function($routeProvider) {
  $routeProvider.
      when('/res/:id', {templateUrl: 'res.html',
                        controller: 'res'
      });
}]);


app.controller('MainCtrl', function($scope) {
});

app.controller('res', function($scope, $routeParams) {
  console.log('resource called')
  $scope.id = $routeParams.id;
});

res.html

{{id}}

http://plnkr.co/edit/HsCJmbllOcnlvlc1oiHa?p=preview

如果单击项目1然后单击2,您将看到“资源调用”打印3次:资源之间每次更改2次。

为什么会发生这种情况的任何线索?

4 个答案:

答案 0 :(得分:12)

找到一个完全相同的问题:

AngularJs: controller is called twice by using $routeProvider

解决方案是在路由器URL的末尾添加“/”:

-      when('/res/:id',
+      when('/res/:id/',

答案 1 :(得分:1)

如果您更改为角度版本1.1.5

,这也适用

答案 2 :(得分:0)

当我编写指令并包含控制器时,我仍然在学习角度,我遇到了这个问题。

我希望能帮助别人,因为我花了很长时间才看到我做了什么:

.directive("list", function() {
  return {
    restrict: "E",
    transclude: true,
    replace: false,
    templateUrl: "contacts/list",
    controller: "CMSController", //- not needed at all
    controllerAs: 'cCtrl'//- not needed at all
  };
})

function config($routeProvider, $locationProvider, $httpProvider) {
  $routeProvider
   ....
    .when('/CMS', {
      templateUrl: 'contacts/index',
      controller: 'CMSController',
      controllerAs: 'cCtrl',
      access: {restricted: true}
    })
  ....

答案 3 :(得分:0)

对我有用的另一种解决方案是,如果您定义了指令,请不要将其控制器设置为多次调用的控制器,而只需使用app.directive将指令添加到您的应用中即可。

    app.directive('myDirective',[ '$window', function ($window) {
    function link(scope, element) {
           // stuff
        });
    };

    return {
      restrict: 'A',
      scope: {offset: "@"},
      link: link,
      // controller: myCtrl //myCtrl was called multiple I comment this line
    };
  }]);