前端通过ajax发送json数组
时间: 2023-05-18 20:07:19 浏览: 107
Ajax实现Json数据传送
4星 · 用户满意度95%
可以使用以下代码实现:
$.ajax({
type: "POST",
url: "example.php",
data: JSON.stringify({array: [1, 2, 3]}),
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function(data){
console.log(data);
},
error: function(xhr, status, error){
console.log(error);
}
});
其中,data 参数为要发送的 JSON 数组,contentType 参数指定发送的数据类型为 JSON,dataType 参数指定接收的数据类型为 JSON。
阅读全文