一个成功的功能$http.put
没有进入this
它被称为内部的服务范围。 我需要在呼叫从PUT请求重新更新服务的属性。
这是我想要的服务做了削减例如:
var myApp = angular.module('myApp', function($routeProvider) {
// route provider stuff
}).service('CatalogueService', function($rootScope, $http) {
// create an array as part of my catalogue
this.items = [];
// make a call to get some data for the catalogue
this.add = function(id) {
$http.put(
$rootScope.apiURL,
{id:id}
).success(function(data,status,headers,config) {
// on success push the data to the catalogue
// when I try to access "this" - it treats it as the window
this.items.push(data);
}).success(function(data,status,headers,config) {
alert(data);
});
}
}
很抱歉,如果有在JS的一些错误,主要问题是如何从成功回调中访问该服务范围是什么?
编辑 :而这个问题的答案是正确的,我切换到factory
方法既Josh和马克它推荐