问题描述
把那个websevice中的xml申明文件去掉,只要里面的数据(数据库中),就相当于把那个格式去掉!!C#写的!!网页结果:<?xmlversion="1.0"encoding="UTF-8"?><stringxmlns="http://tempuri.org/">[color=#0000FF]{'Count':'1','Login':[{'user':'1432980783@qq.com','pass':'1234','Even':'1101'}]}</string>[/color]红色部分位运行结构。我只要里面数据(蓝色部分),这个是写一个app接口!!
解决方案
解决方案二:
运行结果如下,只要Json格式的数据!!
解决方案三:
1:返回数据的时候用respone.write2:设置content-type
解决方案四:
varxml=newXmlDocument();xml.Load(filePath);varjsonStr=xml.SelectSingleNode("/string").InnerText;
解决方案五:
扔掉webservice。使用你的ashx直接输出输出你要的字符串(json序列化)就行了。
时间: 2024-10-21 18:00:49