WCF REST:返回 JSON 或 XML 以供多个客户端访问?

发布于 2024-10-14 03:30:03 字数 205 浏览 2 评论 0原文

谁能告诉我内容类型的首选方法是什么?

即返回 JSON 或 XML 最好是什么?

将访问我的服务的客户端会有所不同,silverlight、iphone、android、WPF 和 WP7。

我陷入了坚持使用默认值 - xml 还是返回 JSON 之间?

在与多个客户交谈时,有人知道每个人的优点和缺点吗?

提前致谢

Can anyone tell me what the preferred method for the content type is?

i.e. what is best to return JSON or XML?

The clients that will be accessing my service will vary, silverlight, iphone, android, WPF and WP7.

I am stuck between stick with the default - xml or returning JSON?

DOes anyone have the pros and cons for each when talking to multiple clients

Thanks in advance

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

怀中猫帐中妖 2024-10-21 03:30:03

以下是我突然想到的一些优点和缺点...

与 XML 相比,JSON 具有以下优点:

  • 由于它基于 Javascript,因此更容易在 Web 浏览器客户端中使用。
  • 数据格式更加紧凑,特别是当您有很多数据元素时。

XML 相对于 JSON 具有以下优点:

  • 更好地支持非 Javascript 环境。
  • 可以通过 XML 模式正式定义和验证结构。

Here are some pros and cons off the top of my head...

JSON has the following advantages over XML:

  • Much easier to consume in web browser clients because it's Javascript-based.
  • Data format is more compact, especially if you have a lot of data elements.

XML has the following advantages over JSON:

  • Better support in non-Javascript environments.
  • Structure can be formally defined and validated through an XML schema.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文