我正在熟悉 AngularJS 中的 controllerAs 语法,当我需要对服务变量进行简单绑定时遇到了问题。通常 a $scope.$watch
or$scope.$on
会做,但这将涉及注入$scope
,这似乎违背了控制器的目的。
目前我所拥有的是,在单击其中一个按钮并调用config.setAttribute(attr)
之后,控制器调用服务的setAttribute
功能,但不是getAttribute
,所以config.attribute
永远不会改变。
在我处理这个问题的过程中,有什么我忽略的吗?我需要注入$scope
或更改控制器语法来$scope
代替使用吗?
看法:
<div data-ng-controller="ConfigCtrl as config">
<h3>Customize</h3>
<pre>Current attribute: {{config.attribute}}</pre>
<label>Attributes</label>
<div data-ng-repeat="attr in config.attributes">
<button ng-click="config.setAttribute(attr)">{{attr.name}}</button>
</div>
</div>
服务:
(function() {
'use strict';
angular.module('app')
.factory('Customization', Customization);
function Customization() {
var service = {
attribute: null,
getAttributes: getAttributes,
setAttribute: setAttribute,
getAttribute: getAttribute
}
return service;
/////
function getAttributes() {
return [
{name: 'Attr1', value: '1'},
{name: 'Attr2', value: '2'} // etc.
];
}
function setAttribute(attr) {
service.attribute = attr;
}
function getAttribute() {
return service.attribute;
}
}})();
控制器:
(function(){
'use strict';
angular.module('app')
.controller('ConfigCtrl', ConfigCtrl);
function ConfigCtrl(Customization){
var vm = this;
vm.attribute = Customization.getAttribute(); // bind
vm.attributes = [];
// Functions
vm.setAttribute = Customization.setAttribute;
init();
/////
function init(){
// Get attributes array
vm.attributes = Customization.getAttributes();
}
}})();