错误请求进行AJAX呼叫时:This.readyState未定义

时间:2018-08-31 18:45:29

标签: javascript dynamics-crm crm microsoft-dynamics

我编写了一个函数,该函数获取查找字段的GUID,并使用该函数进行AJAX调用。这是我拨打的电话:

fetchOptionSet: function (executionContext) {
        var formContext = executionContext.getFormContext(); //get form context
        var client = Xrm.Page.context.getClientUrl(); //get client url
        var childId = formContext.getAttribute("new_childid").getValue()[0].id;
        var child = childId.replace(/[{}]/g, "");

        var contract;
        var req = new XMLHttpRequest();
        req.open("GET", client + `/api/data/v8.2/new_childallergieses(${child})?$select=_new_childid_value`, 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 _new_childid_value = result["_new_childid_value"];
                    contract = _new_childid_value.replace(/[{}]/g, "");
                } else {
                    Xrm.Utility.alertDialog(this.statusText);
                }
            }
        };
        req.send();

但是,每次脚本运行时,我都会收到错误的请求。我需要通过调用(合同编号)返回的guid来进行另一个ajax调用! uri很好,我在浏览器中测试了链接,并返回了我想要的合同编号。

Debug

2 个答案:

答案 0 :(得分:1)

可以通过将GUID值Bad request替换为任何childId来解决第一个问题{}

第二个问题,这是Ajax调用,通过在true中提到req.open是异步的,因此请求uri可能还有其他问题。这就是为什么readyState未定义的原因。

尝试一下。将您的uri粘贴到浏览器地址栏中,以查看所有清除的错误。

http://test.crm.dynamics.com/api/data/v8.2/new_childallergieses(guid)?$select=_new_childid_value

答案 1 :(得分:1)

从“异步”更改为“同步”,突然间它起作用了!

 var path_one = Xrm.Page.context.getClientUrl() + "/api/data/v8.2/new_childallergieses(" + child + ")?$select=_new_childid_value";
 req.open("GET", path_one , false);

我做了一些调查,发现该功能设置为在加载时执行,并且在加载时发送异步调用会提出错误的请求。