如何用纯JavaScript编写以下代码?
jQuery.post('/cart/add.js',
{ quantity: 1, id: 26449060865 },
{ quantity: 2, id: 26449101569 },
{ quantity: 3, id: 26449251265 },
null,
"json"
);
答案 0 :(得分:-1)
但是我建议您应该获取。
如果要使用XMLHttpRequest,则代码如下。
const theUrl = "/cart/add";
xmlhttp.open("POST", theUrl);
xmlhttp.setRequestHeader("Content-Type", "application/json;charset=UTF-8");
xmlhttp.send(JSON.stringify(
{ quantity: 1, id: 26449060865 },
{ quantity: 2, id: 26449101569 },
{ quantity: 3, id: 26449251265 }
)); ```