I get the JSON by AJAX. Now, I need to export the JSON to Excel. What should I do?
Here is some code:
$.ajax({
url: '../getData.ashx',
type: 'post',
dataType: 'json',
data: {},
success: function (data) {
var json = data.result;
},
error: function () {
}
})