I want to request the file using “POST” Method? Any suggestion?
url = "https://www.xxxx.com/data.csv";
Papa.parse(url, {
download: true,
complete: function() {
// executed after all files are complete
}
});
I want to request the file using “POST” Method? Any suggestion?
url = "https://www.xxxx.com/data.csv";
Papa.parse(url, {
download: true,
complete: function() {
// executed after all files are complete
}
});