从 Phonegap Android 应用程序调用 Web 服务时出现此错误。



这是相关的代码:

var ns = (wsdl.documentElement.attributes["targetNamespace"] + "" == "undefined") ?
wsdl.documentElement.attributes.getNamedItem("targetNamespace").nodeValue :
wsdl.documentElement.attributes["targetNamespace"].value;

最佳答案

可能是因为跨域请求,CORS
所以要么你必须把它包含在你的头脑中

Accept: Access-Control-Allow-Origin

或也使用
chrome.exe --disable-web-security

或者你也可以安装 chrome 扩展

Enable cors request extention in chrome

希望它会有所帮助。

关于android - 无法读取 null 的属性 'documentElement',我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/8860027/

10-10 06:19