firefox debug 提示xml解析错误


现象如下:

XML 解析错误:格式不佳 位置:http://localhost:56692/services/aa.asmx/currenttickets 行 1,列 1:


因为服务端没有明确指定数据格式,而firefox的调试器默认为xml;或者默认的数据格式为xml,而实际是按json或text格式来发送的。详见(https://blog.csdn.net/Henry_Wu001/article/details/80238758)中提到的Response.ContentType。


根据(https://msdn.microsoft.com/en-us/library/ms525208(v=vs.90).aspx)说明

默认格式为  text/HTML。


你可能感兴趣的:(js,c#)