请教关于responseXML为空或null的错误?
客户端采用prototype.js框架CallBack为:
function getData(og)
{
var pc =og.responseXML.getElementsByTagName("BudgetStyle");
//这里出错:提示responseXML为空或不是对象,但下面的代码仍然运行,也能够获取数据,页面显示正常。
//用alert(responseText)能获取正常数据(汉字乱码),错误提示:responText为空或不是对象
if(pc != null)
{
for(var i = 0; i < pc.length; i++)
{
var bs = pc[i].getAttribute("BS");
var id = pc[i].getAttribute("ID");
var op = new Option(bs,id);
sc.options.add(op);
}
}
}
服务端:(采用.net的ashx文件)
context.Response.ContentType = "text/xml;charset=gb2312";
context.Response.Charset = "GB2312";
string pid = context.Request.QueryString["pid"].ToString();
string type = context.Request.QueryString["type"].ToString();
string data = "<P>" + getData(pid, type) + "</P>";
context.Response.Write(data);