Answers for "how to send multiple array in ajax"

0

how to send multiple array in ajax

$.ajax({
	url: "/something",
    type: "GET",
    data: {p1: ["v1", "v2"], p2: ["v1", "v2"]}, // multiple array we want to send
    success: function(data){ 
   		console.log(data);
    }
}).done(function(){
    console.log("Success.");
}).fail(function(){
    console.log("An error has occurred.");
}).always(function(){
  	console.log("Complete.");
});
Posted by: Guest on November-26-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language