尝试用 AngularJS 服务做一个简单的例子。
我想在我的数据模型(服务)中包含一些变量和函数,并通过控制器公开它们并将它们绑定到视图。
问题是控制器/视图以某种方式获取模型的新实例,我真的看不出这有什么用,因为我想使用其他控制器/视图来查看相同服务的相同数据/API,而不是每次都有一个新实例。
这是一个关于 plunker 的示例:http ://plnkr.co/edit/AKZLaT2HrkBPMkICsski?p=preview
/*****script.js******/
var app = angular.module('app', []);
app.service('myService', function() {
// my data here
var text = 'text',
text2 = 'text2';
// my function here
var copyText = function(){
console.log('BEFORE text: '+ text + ' text2: ' + text2);
text2 = text;
console.log('AFTER text: '+ text + ' text2: ' + text2);
};
// expose my variables/API here
return {
text: text,
text2: text2,
copyText: copyText
};
});
app.controller('myCtrl', [ '$scope', 'myService', function($scope, myService){
$scope.myService = myService;
}]);
/*****index.html******/
...
<div ng-controller="myCtrl">
<h1>angular service exposure</h1>
<input type="text" ng-model="myService.text">
<p>text: {{ myService.text }}</p>
<button ng-click="myService.copyText()">copy text to text2</button>
<p>text2: {{ myService.text2 }}</p>
</div>
如果您打开控制台,当您按下按钮时,您将在将文本复制到 text2 之前和之后看到模型的“真实”值。哪些不是我在控制器视图中看到的...