PapaParse
PapaParse copied to clipboard
How to using post method to download csv file?
MY Code: 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?
Given that it's just a file on your server, why would you need to use POST
to get(heh) it?
However sometimes you will need to post some query condition to get a generated output in csv format, that's when you need the support for POST
method.