I have an issue with the large data set export into an excel sheet. I am export 13k product into excel sheet using blob = this.exportData({}); but it's not working properly it's working only for small data set.
So please provide necessary solution regarding this
blob = this.exportData({
url: "ajaxurl",
filename: JSON.stringify({
'filename': filename,
'ids': ids,
'groupIds': groupIds
}),
// render: true
});
if(typeof blob === "string"){ blob = new Blob([blob]);}
saveAs(filePath, exportedFileName);