我有角度控制器,有2个功能删除和上传。 在 上传 中,我调用一个对象的函数,该函数从另一个函数中获取其参数。对于成功回调, 我想从这个成功方法中调用scope.delete 控制器内部的示例代码
$scope.delete = function () {
somecode
}
$scope.upload = function(){
var scope = $scope;
object.select(var1, function() {
//some code
//here i want to call scope.delete(): but i get scope is not defined
});
}