Javascript : Send JSON Object with Ajax?
2022-08-30 02:23:05
这可能吗?
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 对象并在参数中发送它,但如果可能的话,以这种方式发送它会很酷。JSON.stringify