AngularJS - 如何在不使用范围的情况下从子ctrl中更改父crtl中的对象?

时间:2015-11-06 13:41:38

标签: angularjs angularjs-controller

如何在不使用$scope的情况下从子ctrl中更改父crtl中的对象?

示例:

myApp.controller("ParentController", function () {
    var pvm = this;
    pvm.index = 0;
});
myApp.controller("ChildController", function () {
    var cvm = this;
    pvm.index = 1; // how to achieve this?
});

0 个答案:

没有答案