I am new in Ajax I am using this following ajax call for call my controller:
$.ajax({
type: "get",
url: "getUser",
cache: false,
traditional: true,
data: {'jsonData': JSON.stringify(selectedDataArray)},
dataType: 'html',
success: function (response) {
}
But here I want to understand what is use of traditional and cache any help?