Angular 资源自定义 post 方法

Angular resource custom post method

我需要 post 数据到 SharePoint 列表,我想通过使用 一个资源工厂,直到现在我 posted 数据是这样的:

this.save = function(data) {
    data["__metadata"] = { "type": getItemTypeForListName('ListName') };
    var restQueryUrl = appweburl + "/_api/lists/getByTitle('ListName')/items";
    $.ajax({
        url: restQueryUrl,
        type: "POST",
        headers: {
            "accept": "application/json;odata=verbose",
            "X-RequestDigest": $("#__REQUESTDIGEST").val(),
            "content-Type": "application/json;odata=verbose"
        },
        data: JSON.stringify(data),
        success: function (data) {
            console.log(data);
        },
        error: function (error) {
            alert(JSON.stringify(error));
        }
    });
};

到目前为止,我的资源工厂是这样的:

myApp.factory('Entry', function($resource) {

  return $resource(appweburl + "/_api/lists/getByTitle('ListName')/items", {}, {
    get: {
        method: 'GET',
        headers: { "Accept": "application/json; odata=verbose" },
        url: appweburl + "/_api/lists/getByTitle('ListName')/items?$select=Id,Title,Description&$filter=ID eq :ID"
    },
    query: {
        method: 'GET',
        headers: { "Accept": "application/json; odata=verbose" },
        url: appweburl + "/_api/lists/getByTitle('ListName')/items?$select=Id,Title,Description"
    }
  })
});

如何 'convert' 我的保存函数到资源方法?

好的,所以我比我想象的要容易,我要做的是 运行 函数 'getItemTypeForListName' 在调用保存函数之前,这会将需要保存的元数据添加到共享点。在我的资源工厂中添加:

    save: {
        method: 'POST',
        headers: {
            "accept": "application/json;odata=verbose",
            "X-RequestDigest": $("#__REQUESTDIGEST").val(),
            "content-Type": "application/json;odata=verbose"
        }
    }

然后在我的控制器中这样调用它:

$scope.test = new Entry();
$scope.test.Title = 'testTitle';

// function to set metadata
$scope.test["__metadata"] = { "type": getItemTypeForListName('ListName') };
Entry.save($scope.test);