SharePoint 2013 REST API,按日期时间筛选列表项

时间:2014-02-03 11:23:44

标签: sharepoint-2013

我需要从今天创建的列表中获取该项目。

基本上,项目每天都会在列表中创建一次。我需要的是能够使用rest api获得该项目。

http://server.domain.com/_api/web/lists/GetByTitle('MyList')/items/?$filter=Created eq datetime('DD.MM.YYYY')

但这不起作用......

知道如何使用rest来获取今天创建的项目吗?

1 个答案:

答案 0 :(得分:-1)

日期时间功能应该像datetime'01.03.2013'

一样使用
http://server.domain.com/_api/web/lists/GetByTitle('MyList')/items/?$filter=Created eq datetime'01.03.2013'