PluginProbe
GiveWP – Donation Plugin and Fundraising Platform / 4.14.0
GiveWP – Donation Plugin and Fundraising Platform v4.14.0
4.16.8 4.16.7.2 4.16.7.1 4.16.7 4.16.6.1 4.16.6 4.16.5.1 4.16.5 4.16.4 4.16.3 4.16.2 4.16.1 4.16.0 4.15.5 4.15.4 4.15.3 4.15.2 4.15.1 4.15.0 2.3.0 2.3.1 2.3.2 2.30.0 2.31.0 2.31.1 All 253 releases
give / src / DonationForms / resources / app / utilities / postFormData.ts
postFormData.ts
26 lines 999 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 /**
2 * @since 3.0.0
3 *
4 * @see https://developer.mozilla.org/en-US/docs/Web/API/Fetch_API/Using_Fetch#supplying_request_options
5 */
6 export default async function postFormData(url: string, data: FormData) {
7
8 // Default options are marked with *
9 const response = await fetch(url, {
10 method: 'POST', // *GET, POST, PUT, DELETE, etc.
11 mode: 'cors', // no-cors, *cors, same-origin
12 cache: 'default', // *default, no-cache, reload, force-cache, only-if-cached
13 credentials: 'same-origin', // include, *same-origin, omit
14 redirect: 'follow', // manual, *follow, error
15 referrerPolicy: 'no-referrer-when-downgrade', // no-referrer, *no-referrer-when-downgrade, origin, origin-when-cross-origin, same-origin, strict-origin, strict-origin-when-cross-origin, unsafe-url
16 headers: {
17 accept: 'application/json',
18 },
19 body: data, // body data type must match "Content-Type" header
20 });
21
22 return {
23 response,
24 };
25 }
26