c#如何返回xml格式数据
c#中有以下代码传回XML数据:namespaceWEB.inc.dept_list{///<summary>///tree的摘要说明///</summary>publi...
c#中有以下代码传回XML数据:
namespace WEB.inc.dept_list
{
/// <summary>
/// tree 的摘要说明
/// </summary>
public class tree : IHttpHandler
{
public void ProcessRequest(HttpContext context) //
{
context.Response.ContentType = "text/plain";
context.Response.ContentType = "text/plain";
string result = getXml();
context.Response.Write(result);
}
public bool IsReusable
{
get
{
return false;
}
}
public static string getXml()
{
// 读取XML
XmlTextReader reader = new XmlTextReader(HttpRuntime.AppDomainAppPath + "/inc/dept_list/tree.xml");
reader.Read();
XmlDocument doc = new XmlDocument();
// 载入XmlTextReader类的对象
doc.Load(reader);
return doc.InnerXml;
}
-------------------
JS中有接收代码如下:
var req = newXMLHttpRequest();
//此处需重新处理
req.open("GET", XmlSrc, false);
req.onreadystatechange = function () {
if (req.readyState == 4)//请求完成,0=未初始化;1=正在加载;2=已加载;3=交互中;4=完成
{
if (req.status == 200)//请求状态,200为正常返回。
{
xmlDom = req.responseXML; //返回文本绘制页面
alert(req.responseText);
if (req.responseXML == null) {
xmlDom = eval(req.responseText);
}
}
else if (req.status == 404) {
xmlDom = yourFileURL + " 不存在."; //url不存在
}
else {
xmlDom = "其他原因"; //其他状态
}
}
但是发现接收过来的字符串只是文本,非XML格式,请问如何返回XML数据。十分感谢! 展开
namespace WEB.inc.dept_list
{
/// <summary>
/// tree 的摘要说明
/// </summary>
public class tree : IHttpHandler
{
public void ProcessRequest(HttpContext context) //
{
context.Response.ContentType = "text/plain";
context.Response.ContentType = "text/plain";
string result = getXml();
context.Response.Write(result);
}
public bool IsReusable
{
get
{
return false;
}
}
public static string getXml()
{
// 读取XML
XmlTextReader reader = new XmlTextReader(HttpRuntime.AppDomainAppPath + "/inc/dept_list/tree.xml");
reader.Read();
XmlDocument doc = new XmlDocument();
// 载入XmlTextReader类的对象
doc.Load(reader);
return doc.InnerXml;
}
-------------------
JS中有接收代码如下:
var req = newXMLHttpRequest();
//此处需重新处理
req.open("GET", XmlSrc, false);
req.onreadystatechange = function () {
if (req.readyState == 4)//请求完成,0=未初始化;1=正在加载;2=已加载;3=交互中;4=完成
{
if (req.status == 200)//请求状态,200为正常返回。
{
xmlDom = req.responseXML; //返回文本绘制页面
alert(req.responseText);
if (req.responseXML == null) {
xmlDom = eval(req.responseText);
}
}
else if (req.status == 404) {
xmlDom = yourFileURL + " 不存在."; //url不存在
}
else {
xmlDom = "其他原因"; //其他状态
}
}
但是发现接收过来的字符串只是文本,非XML格式,请问如何返回XML数据。十分感谢! 展开
1个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询