我有一个名为 histogram demo 的组件,其中有一个单独的 Controller ,其中有一个名为 $scope.selectedElements
的变量,我想在主 appCtrl
中查看此变量> Controller 。如果没有 $rootScope
,我如何能够访问此变量。
主要 HTML
<html lang="en-US" ng-app="histogram-test" ng-controller="appCtrl">
<div class="histogram-container"> <histogram-demo options = "options" data="data"></histogram-demo></div>
</html>
App.JS
angular
.module('histogram-test')
.config(function ($httpProvider, usSpinnerConfigProvider) {
$httpProvider.defaults.withCredentials = true;
usSpinnerConfigProvider.setDefaults({
// see http://spin.js.org/
color: 'white',
radius: 30,
width: 8,
length: 16,
shadow: true,
});
})
.controller('appCtrl', function ($scope, appConfig, $rootScope, auth, $state) {
/** HERE is where I want to watch $scope.selectedElements in Component.js **/}
组件.JS
angular
.module('histogram-test').component('histogramDemo', {
bindings: {
data: "=",
options: "=",
},
templateUrl: templateUrl,
controller: controller,
controllerAs: 'vm',
});
function controller($state, $scope) { ...
$scope.selectedElements = []; ...}
您可以简单地考虑将方法传递给 component
,并在更改时从组件调用该方法 selectedElements
。另外,通过使您的绑定(bind)使用 <
来使您的应用程序更具性能,遵循单向数据流。 (单向绑定(bind))。
bindings: {
data: "<",
options: "<",
selectedItemChange: '&'
},
然后你的指令元素将看起来像
<histogram-demo
options="options"
data="data"
selected-item-changed="itemChanged(items)">
</histogram-demo>
每当你改变时vm.selectedItems
Controller 组件内的变量,请调用 vm.selectedItemChange({items: vm.selectedItems})
,所以 histogram-demo
的消费者组件将具有接收 selectedItems
的方法数组。
我是一名优秀的程序员,十分优秀!