oficial docs沒有寫回調函數。
我的服務:
angular.module('myApp')
.factory('Thing', ['$resource',
function ($resource) {
return $resource('/api/things/:id', { id: 'all' }, {});
}
);
,我已經控制器:
angular.module('myApp')
.controller('ThingCtrl', ['$scope', '$location', '$routeParams', 'Thing',
function ($scope, $location, $routeParams, Thing) {
Thing.get({id: $routeParams.thingId}, function(thing) {
// This callback i found in example
$scope.thing = thing;
});
$scope.save = function() {
Thing.save({id: $scope.thing._id}, $scope.thing, function() {
// This callback i found using brute force. It run when respond OK (200)
});
};
}
]);
我想知道如何使用這個回調。 我想知道什麼需要這個回調。
任何人都可以幫助我嗎?
p.s.對不起,如果我的英語不是很好......
回調是服務器的迴應,所以無論你有什麼設置。 – tymeJV
當.get回調是第二個參數,並採取回應,也許別的東西? – pofigizm
當.save回調是第三個參數,並採取...我不知道? – pofigizm