尝试使用Javascript和Rest删除Sharepoint项时禁止的消息

时间:2016-10-14 14:34:36

标签: javascript angularjs rest sharepoint

我可以使用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));
   }
  });

0 个答案:

没有答案