如何使用 REST API 将列表项保存到 SharePoint 列表中的特定文件夹中?

How to save a list item into specific folder in SharePoint list using REST API?

我必须将项目保存到其中有特定文件夹的 SharePoint 列表中,并且我必须将项目保存到基于项目的特定文件夹中。我已经从特定文件夹中检索了项目,但是如何使用 REST API?

将列表项保存到 SharePoint 列表中的特定文件夹中

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