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

Sharepoint 2013 SharePoint 2013 REST API,按日期时间筛选列表项,sharepoint-2013,Sharepoint 2013,我需要从今天创建的列表中获取项目 基本上,每天在列表中随时创建一个项目。我需要的是能够使用RESTAPI获取该项 http://server.domain.com/_api/web/lists/GetByTitle('MyList')/items/?$filter=Created eq datetime('DD.MM.YYYY') 但这不起作用 知道如何使用rest获取今天创建的项目吗?应该像使用datetime'01.03.2013' http://server.domain.com/_ap

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

基本上,每天在列表中随时创建一个项目。我需要的是能够使用RESTAPI获取该项

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


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

应该像使用
datetime'01.03.2013'

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

datetime函数应该像
datetime'01.03.2013'

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