aboutsummaryrefslogtreecommitdiffstats
path: root/src/service/http.js
diff options
context:
space:
mode:
authorVojta Jina2011-11-29 21:51:59 -0800
committerVojta Jina2012-01-23 11:05:36 -0800
commit992c790f0786fa45c1cc3710f29bf49c7c322ba7 (patch)
tree581d06ea9ba275a14d5891d83b2df03f9930bd45 /src/service/http.js
parentf5343c9fd3c7cd0fefdb4d71d2b579dbae998d6a (diff)
downloadangular.js-992c790f0786fa45c1cc3710f29bf49c7c322ba7.tar.bz2
refactor(scope): separate controller from scope
Controller is standalone object, created using "new" operator, not messed up with scope anymore. Instead, related scope is injected as $scope. See design proposal: https://docs.google.com/document/pub?id=1SsgVj17ec6tnZEX3ugsvg0rVVR11wTso5Md-RdEmC0k Closes #321 Closes #425 Breaks controller methods are not exported to scope automatically Breaks Scope#$new() does not take controller as argument anymore
Diffstat (limited to 'src/service/http.js')
-rw-r--r--src/service/http.js29
1 files changed, 14 insertions, 15 deletions
diff --git a/src/service/http.js b/src/service/http.js
index b008aa8e..9d57ed76 100644
--- a/src/service/http.js
+++ b/src/service/http.js
@@ -395,29 +395,28 @@ function $HttpProvider() {
<doc:example>
<doc:source jsfiddle="false">
<script>
- function FetchCtrl($http) {
- var self = this;
- this.method = 'GET';
- this.url = 'examples/http-hello.html';
+ function FetchCtrl($scope, $http) {
+ $scope.method = 'GET';
+ $scope.url = 'examples/http-hello.html';
- this.fetch = function() {
- self.code = null;
- self.response = null;
+ $scope.fetch = function() {
+ $scope.code = null;
+ $scope.response = null;
- $http({method: self.method, url: self.url}).
+ $http({method: $scope.method, url: $scope.url}).
success(function(data, status) {
- self.status = status;
- self.data = data;
+ $scope.status = status;
+ $scope.data = data;
}).
error(function(data, status) {
- self.data = data || "Request failed";
- self.status = status;
+ $scope.data = data || "Request failed";
+ $scope.status = status;
});
};
- this.updateModel = function(method, url) {
- self.method = method;
- self.url = url;
+ $scope.updateModel = function(method, url) {
+ $scope.method = method;
+ $scope.url = url;
};
}
</script>