CRM 2015 Microsoft app xpathevaluator'未定义

时间:2015-11-13 12:14:17

标签: javascript dynamics-crm crm dynamics-crm-2015 xrmservicetoolkit

我们正在使用crm 2015,它没有问题。 所有代码都在IE和Chrome中正确执行。 但是当我们尝试使用Microsoft的crm应用程序时,我们得到错误:'xpathevaluator'未定义。

我认为 xrmservicetoolkit 会引发错误。

    if (typeof (node.selectSingleNode) != "undefined") {
        return node.selectSingleNode(xpathExpr);
    } else {
        var xpe = new XPathEvaluator();
        var xPathNode = xpe.evaluate(xpathExpr, node, _NSResolver, XPathResult.FIRST_ORDERED_NODE_TYPE, null);
        return (xPathNode != null) ? xPathNode.singleNodeValue : null;
    }

0 个答案:

没有答案