WebService 返回已识别的 XML
返回 XML 的 Web 服务的标准是返回带有缩进的 XML 吗?
另外,返回的 XML 中是否有新行是标准的,还是可以完全没有缩进/新行?
It is standard for a Web Service that returns XML to return it with indentation?
Also, is it standard to have new lines in the XML that is returned, or can it just be without indentation/new lines completely?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我不确定它是否是标准的,但通常 Web 服务会返回未格式化或缩进的 XML。 XML 旨在实现机器可读,因此空格和格式不是问题。如果您需要自己阅读 XML,有许多工具和浏览器插件可以帮助您格式化它。
I'm not sure that it's standard, but generally a webservice will return XML that is not formatted or indented. XML is intended to be machine readable, so whitespace and formatting is not an issue. If you need to read the XML yourself there are many tools and browser plugins that will help format it for you.
Web 服务将返回其编程返回的内容。
A Web Service will return what ever it was programmed to return.