首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > JAVA > Java Web开发 >

google天气查询webservice接口返回xml为空解决办法

2012-01-20 
google天气查询webservice接口返回xml为空返回之后var doc httpReq.responseText有值var doc httpReq

google天气查询webservice接口返回xml为空
返回之后
var doc = httpReq.responseText;有值 
var doc = httpReq.responseXML;却没有
这是什么情况呢?


[解决办法]
xmlhttp.open("GET", "http://localhost/books.xml", false);
xmlhttp.send();
WScript.Echo(xmlhttp.responseXML.xml);


只是猜测,看msdn上给出的示例是这样的,不知是否有些关系

http://msdn.microsoft.com/en-us/library/windows/desktop/ms757066%28v=vs.85%29.aspx
[解决办法]
返回之后
var doc = httpReq.responseText;有值
var doc = httpReq.responseXML;却没有
这是什么情况呢?

那就是说返回的内容是text格式,而不是xml格式

[解决办法]

探讨
返回之后
var doc = httpReq.responseText;有值
var doc = httpReq.responseXML;却没有
这是什么情况呢?

热点排行