Browse Source

Added feature to support POST method when download is true

Added documentation for the new feature
pull/772/head
danzelt 5 years ago
parent
commit
0058622a78
  1. 9
      docs/docs.html

9
docs/docs.html

@ -433,6 +433,7 @@ var csv = Papa.unparse({
error: undefined, error: undefined,
download: false, download: false,
downloadRequestHeaders: undefined, downloadRequestHeaders: undefined,
downloadRequestBody: undefined,
skipEmptyLines: false, skipEmptyLines: false,
chunk: undefined, chunk: undefined,
fastMode: undefined, fastMode: undefined,
@ -598,6 +599,14 @@ var csv = Papa.unparse({
}</code> }</code>
</pre> </pre>
</tr> </tr>
<tr>
<td>
<code>downloadRequestBody</code>
</td>
<td>
If defined and the download property is true, a POST request will be made instead of a GET request and the passed argument will be set as the body of the request.
</td>
</tr>
<tr> <tr>
<td> <td>
<code>skipEmptyLines</code> <code>skipEmptyLines</code>

Loading…
Cancel
Save