search

Home  >  Q&A  >  body text

angular.js - Can controllers in angularjs be nested?

Can controllers in angularjs be nested?

For example:

<p ng-controller="ACtrl">
    <p ng-controller="BCtrl">
        <p>{{ value }}</p>
    </p>
</p>

Modifying the value of $scope.value in BCtrl and then using inprog in ACtrl seems to cause an error.

漂亮男人漂亮男人2853 days ago1028

reply all(5)I'll reply

  • PHP中文网

    PHP中文网2017-05-15 16:51:57

    can be nested, but you should use $parent variables.
    http://fdietz.github.io/recipes-with-angular-js/controllers/sharing-models-between-nested-controllers.html

    reply
    0
  • 阿神

    阿神2017-05-15 16:51:57

    http://stackoverflow.com/questions/21287794/angularjs-controller-as-syntax-clarification

    reply
    0
  • 黄舟

    黄舟2017-05-15 16:51:57

    It can be nested, and the syntax of "controller as ctrl" is better. If you think about it written like in the question, you don’t know whether the value comes from ACtrl or BCtrl

    <p ng-controller="ACtrl as a">
        <p ng-controller="BCtrl as b">
            <p>{{ b.value }}</p>
        </p>
    </p>
    

    reply
    0
  • 给我你的怀抱

    给我你的怀抱2017-05-15 16:51:57

    It must be nestable, otherwise it will not easily shake the dominance of JQuery. If you really want to learn, I recommend the book Angular Authoritative Guide

    reply
    0
  • 阿神

    阿神2017-05-15 16:51:57

    The best book in China at present should be the Chinese version of ng-book. Read the book carefully. It’s much better than the era when you could only read documents through the wall.

    reply
    0
  • Cancelreply