如何使用REST for Sharepoint 2013删除项目

时间:2012-11-30 20:23:38

标签: javascript sharepoint rest sharepoint-2013

我正在创建一个Sharepoint应用程序,我只能使用Javascript(包含jQuery)和REST端点。我想使用网络应用程序从主机中删除项目,但我收到错误(403: FORBIDDEN)。这是我到目前为止的代码:

executor = new SP.RequestExecutor(appweburl);
executor.executeAsync({
    url: appweburl + "/_api/SP.AppContextSite(@target)/web/lists/getbytitle('" + currentListTitle + "')/items(" + result.Id + ")/?@target='" + hostweburl + "'",
    method: "POST",
    headers: {
               "accept": "application/json",
               "X-RequestDigest": ?????
               "IF-MATCH": "*",
               "X-HTTP-Method": "DELETE"
             },
    success: onDeleteItemSuccess,
    error: onDeleteItemFail
});

现在我发现这个X-RequestDigest是强制性的,我找到了一些来自REST的调用:

$.ajax({
    url: appweburl + "/_api/SP.AppContextSite(@target)/contextinfo/?@target='" + hostweburl + "'",
    type: "POST",
    contentType: "application/x-www-url-encoded",
    dataType: "json",
    success: function (data) {
        if (data.d)
        {
            digestValue = data.d.GetContextWebInformation.FormDigestValue;
            alert(digestValue);
        }
    },
    error: function (xhr) {
        alert(xhr.status + ': ' + xhr.statusText);
    }
});

但它根本不起作用(这可能是因为此代码适用于Sharepoint 2010)并且它将继续向我发送403: FORBIDDEN消息。

有没有人知道如何使用REST从其中一个列表中删除列表项(我不能使用/编辑javascript之外的任何代码!)?

任何帮助都是适当的,如果您需要任何信息,请不要犹豫。

1 个答案:

答案 0 :(得分:4)

代码不适用于SharePoint 2010,因为_api是SP 2013的新功能。

[更新]也许您的意思是您的代码在SP 2013预览中有效?在SP2013 RTM中,您需要使用:

"Accept": "application/json; odata=verbose"