码迷,mamicode.com
首页 > Windows程序 > 详细

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

时间:2019-07-24 13:09:58      阅读:176      评论:0      收藏:0      [点我收藏+]

标签:str   repo   content   error   and   cond   time   odata   cep   

$.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多个条件查询

标签:str   repo   content   error   and   cond   time   odata   cep   

原文地址:https://www.cnblogs.com/Nigel/p/11237113.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!