与普通的POST正文相比,以JSON格式从客户端向服务器发送数据有什么好处?

问题描述 投票:1回答:1

我已经看到一些应用程序以JSON格式将数据发送到服务器。我无法理解通过普通/常规文章正文将数据发送到JSON中的服务器有什么好处。

正常示例的HTTP请求。

// consider headers here

name=abcd&[email protected]

JSON示例的HTTP请求。

// consider headers here

{
   "name":"abcd",
   "email":"[email protected]"
}

JSON帖子正文正在解决什么是普通帖子无法解决的问题?

javascript json web-applications http-post httprequest
1个回答
0
投票

我们使用json发送对象和数组

© www.soinside.com 2019 - 2024. All rights reserved.