我得到了以下使用 GET 的示例。但是“doSave”不适用于 POST。我忽略了一些吗?
$scope.obj1 = $resource('http://localhost:port/srv/:id',
{port: '\:8080', id:'2', callback: 'JSON_CALLBACK'},
{get:{method:'JSONP'}, save:{'POST'});
$scope.doSearch = function () {
$scope.Result = $scope.obj1.get({id:$scope.term});
}
$scope.doSave = function () {
$scope.Result.save();
}