我可以使用AngularJS从Sharepoint列表中获取项目,但是当我尝试使用我的函数删除它时,我会收到一条禁止的消息。
这是我的代码:
$.ajax({
url: "http://spserver/_api/web/lists/getbytitle('MyList')/items(" + MyId +")",
type: "POST",
headers: {
"ACCEPT": "application/json;odata=verbose",
"content-type": "application/json;odata=verbose",
"X-RequestDigest": $("#__REQUESTDIGEST").val(),
"IF-MATCH": "*",
"X-HTTP-Method": "DELETE"
},
success: function (data) {
alert("Deleted Successfully.");
},
error: function (error) {
alert(JSON.stringify(error));
}
});