我想知道是否有办法获取$ http响应并将其存储到控制器变量而不是$ scope。例如:
app.controller('testController', function($scope, $http) {
this.result = 5; // I'd like to store the result here instead of on $scope
$http({
method: 'POST',
url: 'example/',
params: {test_param :'test_parameter'}
}).success(function(result) {
$scope.result = result.data; // This works
this.result = result.data; // This does not work
});
我在尝试使用“this.result”时最终得到的错误是:
TypeError: Cannot set property 'result' of undefined
所以看起来当你在“成功”里面时,你只能访问$ scope而不一定是控制器内的变量。
我想要做的是本地化“result”变量的范围,以防我想在其他控制器中使用相同的名称。我想如果我使用$ scope那么我将不得不跟踪所有控制器中的所有变量?
无论如何,我有一种感觉,我在这里使用了错误的模型,但任何指导都会受到赞赏。
感谢。
答案 0 :(得分:4)
您遇到问题的原因是this
不是指回调中的控制器。有多种方法可以解决这个问题,其中一种方法是:
$http({
method: 'POST',
url: 'example/',
params: { test_param: 'test_parameter' }
}).success(function(result) {
$scope.result = result.data; // This works
this.result = result.data; // Should also work now
}.bind(this));
有关该主题的更多信息,请参阅此question。