在AngularJS中的另一个控制器中使用控制器

前端之家收集整理的这篇文章主要介绍了在AngularJS中的另一个控制器中使用控制器前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
为什么我不能绑定到第二个控制器内的控制器变量?
<div ng-app="ManagerApp">
    <div ng-controller="MainCtrl">
        Main: 
        <div ng-repeat="state in states">
            {{state}}
        </div>
        <div ng-controller="InsideCtrl as inside">
            Inside:
            <div ng-repeat="state in inside.states2">
                {{state}}
            </div>
        </div>
    </div>
</div>

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

angularApp.controller('MainCtrl',['$scope',function ($scope) {
    $scope.states = ["NY","CA","WA"];
}]);

angularApp.controller('InsideCtrl',function ($scope) {
    $scope.states2 = ["NY","WA"];
}]);

示例:https://jsfiddle.net/nukRe/135/

第二次ng-repeat不起作用.

当您使用控制器时,您应该在控制器中使用此关键字
angularApp.controller('InsideCtrl',[ function() {
    var vm = this;
    vm.states2 = ["NY","WA"];
}]);

Forked Fiddle

注意

Technically you should follow one approach at a time. Don’t mix up
this two pattern together,Either use controllerAs Syntax/ Normal
controller declaration as you did for MainCtrl using $scope

原文链接:https://www.f2er.com/angularjs/142081.html

猜你在找的Angularjs相关文章