1
jQuery will not take an object and turn it into JSON. You must do that yourself using a function like JSON.stringify
data : JSON.stringify({ x: "1", y: "2" , z: "3" }),
Source:stackexchange.com
1
jQuery will not take an object and turn it into JSON. You must do that yourself using a function like JSON.stringify
data : JSON.stringify({ x: "1", y: "2" , z: "3" }),