最佳答案
这可能吗?
xmlHttp.send({
"test" : "1",
"test2" : "2",
});
也许用: 一个头与 content type
: application/json
? :
xmlHttp.setRequestHeader('Content-Type', 'application/json')
否则,我可以使用:
xmlHttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded')
然后 JSON.stringify
JSON 对象,并将其发送到一个参数中,但如果可能的话,以这种方式发送将是很酷的。