如何使用REST API从SharePoint 2010获取更新数据 - Java?

时间:2018-01-30 07:14:08

标签: java rest sharepoint sharepoint-2010

我创建了Java示例应用程序,以使用其REST API支持从SharePoint 2010获取数据,

http://sharepoint.domain.com/list/_vti_bin/ListData.svc/title

工作正常。但是,就我而言,一旦在SharePoint中更新了值,我只需要获取更新的数据。是否有任何REST API支持可用于仅从SharePoint 2010获取更新数据?

1 个答案:

答案 0 :(得分:1)

您可以使用SPServices库查询SharePoint数据,以便指定CAML查询来查询所需的项目。

Sample code

$().SPServices({
        operation: "GetListItems",
        async: false,
        listName: "Video",
        CAMLQuery: "<Query><Where><Eq><FieldRef Name='Category' /><Value Type='Choice'>Funny</Value></Eq></Where></Query>",
        CAMLViewFields: "<ViewFields>  <FieldRef Name='Title' /> </ViewFields>",
        completefunc: function (xData, Status) {
          $(xData.responseXML).SPFilterNode("z:row").each(function() {

           var liHtml = "<li>" + $(this).attr("ows_Title") + "</li>";
               $("#tasksUL").append(liHtml);

          });
        }
      });