AngularJS - 无法访问$ http内的外部变量

时间:2016-08-11 13:44:33

标签: angularjs http variables error-handling closures

我有$ http.get请求

function a(event) {
var target = $(event.currentTarget);
$http.get(url).then(function() {
},
function() {
//Not able to access target.
});
}

在错误回调中,目标变量未定义。为什么呢?

1 个答案:

答案 0 :(得分:0)

并不是说您无法访问目标变量,而且$(event.currentTarget)未定义。

使用:

var target = event.target;