有时我看到人们将 json 发送到服务器:
$.ajax({
url: ...
contentType: "application/json; charset=utf-8",
dataType: "json",
data: { 'page': '100AAAAAf00' },
responseType: "json",
success: ...,
error: ...
});
但{ 'page': '100AAAAAf00' }
不是Json。
并说 contentType 是 json ...
Json 是文本表示。
例如:"{ 'page': '100AAAAAf00' }"
我在这里错过了什么吗?(jQuery 是否在幕后进行一些翻译?)
维基:
JSON 或 JavaScript 对象表示法,是一种基于文本 (!!) 的开放标准,专为人类可读的数据交换而设计。