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();
}