如何在纯Javascript XMLHttpRequest中发送JSON参数?

时间:2019-05-15 22:19:21

标签: javascript jquery json

如何用纯JavaScript编写以下代码?

jQuery.post('/cart/add.js', 
  { quantity: 1,  id: 26449060865  },
  { quantity: 2,  id: 26449101569 },
  { quantity: 3, id: 26449251265  },
   null,
   "json"
 );

1 个答案:

答案 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  }
)); ```