我必须将项目保存到SharePoint列表中,其中我有特定的文件夹,我必须根据项目将项目保存到该特定文件夹中。我从特定文件夹中检索了项目,但是如何使用REST API将列表项保存到SharePoint列表中的特定文件夹中?
答案 0 :(得分:1)
使用listdata.svc
var metadata={Title: "Title", Path: "/ServerRelativeUrl of your folder in the list"};
$.ajax({
url: url + "/_vti_bin/ListData.svc/[List Name]",
type: "POST",
contentType: "application/json;odata=verbose",
data: JSON.stringify(metadata),
headers: {
"Accept": "application/json;odata=verbose",
"X-RequestDigest": $("#__REQUESTDIGEST").val()
},
success: function (data) {
self.options.success(data);
},
error: function (data) {
self.options.error(data);
}
});