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

Dynamics CRM2016 Web API之Use custom FetchXML

时间:2016-04-01 18:18:42      阅读:290      评论:0      收藏:0      [点我收藏+]

标签:

      CRM2016中新增的web api支持fetch xml了,之前使用FetchXML的场景是在后天代码中通过组织服务的retrieve multiple方法,但实际的应用效果有多大,还需要在实际的项目中去体会了。

    上代码,注意要对fetch xml进行编码

 var fetch="<fetch mapping='logical'>" 
           +"<entity name='account'>"
           +"<attribute name='accountid'/> "
           + "<attribute name='name'/> "
            + "<attribute name='primarycontactid'/> "
           +"</entity>"
           + "</fetch>"
  var req = new XMLHttpRequest()
  req.open("get", Xrm.Page.context.getClientUrl() + "/api/data/v8.0/accounts?fetchXml="+ encodeURI(fetch), false);
  req.setRequestHeader("Accept", "application/json");
  req.setRequestHeader("Content-Type", "application/json; charset=utf-8");
  req.setRequestHeader("OData-MaxVersion", "4.0");
  req.setRequestHeader("OData-Version", "4.0");
  req.onreadystatechange = function () {
      if (this.readyState == 4) {
          if (this.status == 200) {
              var data = JSON.parse(this.responseText);
          }
          else {
              var data = JSON.parse(this.responseText).error.message;
          }
      }
  };
  req.send();

下图是查询出的结果

技术分享

Dynamics CRM2016 Web API之Use custom FetchXML

标签:

原文地址:http://blog.csdn.net/vic0228/article/details/51036478

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