pass data as json ajax code example
Example: How to pass json format data on ajax call
BY LOVE
1- Pass the JSON format data in this way
data: { "str1": "Love", "str2": "Singh" }
2- You can use JSON.Stringfy function also
var employee = { Id: 101, Name: "Love singh" };
data: JSON.stringify(employee)