SharePoint Rest Api Caml multiple condition query -Rest api 利用Caml多个条件查询

Posted nigel

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SharePoint Rest Api Caml multiple condition query -Rest api 利用Caml多个条件查询相关的知识,希望对你有一定的参考价值。

$.ajax(
		var cquery="<View><Query><Where><And><Geq><FieldRef Name=‘ReleasedDate‘ /><Value Type=‘DateTime‘>2018-03-22</Value></Geq><Leq><FieldRef Name=‘ReleasedDate‘ /><Value Type=‘DateTime‘>2018-03-28</Value></Leq></And></Where></Query></View>"

	url: _spPageContextInfo.webAbsoluteUrl + "/_api/Web/Lists/getbytitle(‘"+listName+"‘)/GetItems",
			        type: "POST",
			        headers: 
			            "accept": "application/json;odata=verbose",
			            "X-RequestDigest": $("#__REQUESTDIGEST").val(),
			            "content-Type": "application/json;odata=verbose"
			        ,
			        data: JSON.stringify( 
			        query : 
			          __metadata: 
			            type: "SP.CamlQuery" 
			          ,
			          ViewXml: caml
			        
			      ),
			        success: function (data) 
		        		var arr=data.d.results;
					console.log(arr);
			        ,
			        error: function (error) 
			            alert(JSON.stringify(error));
			        
			    );
Rest Caml query

  

以上是关于SharePoint Rest Api Caml multiple condition query -Rest api 利用Caml多个条件查询的主要内容,如果未能解决你的问题,请参考以下文章

caml library

SharePoint:如何使用列表中的 CAML 查询获取前 5 条记录

JavaScript Sharepoint:限制caml查询中的结果

Sharepoint:限制caml查询中的结果

SharePoint服务器端对象模型 之 使用CAML进展数据查询

使用CAML比较SharePoint“人员或组”字段