在前端JS中 call web api
Posted TheMiao
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在前端JS中 call web api相关的知识,希望对你有一定的参考价值。
前端写Web API 已经不是什么特别困难的问题, 我们可以使用 CRM REST Builder(https://github.com/jlattimer/CRMRESTBuilder)来生成想使用的 CRM REST Builder
var req = new XMLHttpRequest(); req.open("GET", Xrm.Page.context.getClientUrl() + "/api/data/v8.2/accounts(" + parent.Xrm.Page.data.entity.getId().replace(‘{‘, ‘‘).replace(‘}‘, ‘‘) + ")?$select=accountid,address1_addressid", true); req.setRequestHeader("OData-MaxVersion", "4.0"); req.setRequestHeader("OData-Version", "4.0"); req.setRequestHeader("Accept", "application/json"); req.setRequestHeader("Content-Type", "application/json; charset=utf-8"); req.setRequestHeader("Prefer", "odata.include-annotations="*""); req.onreadystatechange = function() { if (this.readyState === 4) { req.onreadystatechange = null; if (this.status === 200) { var result = JSON.parse(this.response); var accountid = result["accountid"]; var address1_addressid = result["address1_addressid"]; } else { Xrm.Utility.alertDialog(this.statusText); } } }; req.send();
以上是关于在前端JS中 call web api的主要内容,如果未能解决你的问题,请参考以下文章
从零开始学 Web 之 JS 高级apply与call,bind,闭包和沙箱
web前端技术讲解之call和apply的使用(很适合新手小白学习)