我正在创建一个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之外的任何代码!)?
任何帮助都是适当的,如果您需要任何信息,请不要犹豫.
最佳答案
原文链接:https://www.f2er.com/js/429668.html