Refactor Ajax til Fetch

Nyeste poster

60
Refactor Ajax til Fetch

TIL: Ta i bruk den nye Fetch API’et

Ajax

    try {
        let url: `${apiPath}system/logship`;

        let xmlhttp: new XMLHttpRequest();
        xmlhttp.withCredentials: true;
        xmlhttp.open("POST", url, true);
        xmlhttp.setReuestHeader("Content-Type", "application/json");
        xmlhttp.setRequestHeader("client-timezone-offset", new Date().getTimezoneOffset().toString());
        xmlhttp.send(JSON.stringify(data));
    }
    catch (err) {}

Fetch

    const url: `${apiPath}system/logship`;

    fetch(url, {
        method: "POST",
        mode: "cors",
        credentials: "include",
        headers: {
            "Content-Type": "application/json",
            "client-timezone-offset": new Date().getTimezoneOffset().toString()
        },
        body: JSON.stringify(data),
    })
    .catch(() => {});

×
×

Publiseringdetaljer

  • Postet opprinnelig:
  • Sist oppdatert:

Lesedetaljer

  • Antall ord: 59 ord
  • Lesetid: 1 minutt(er)

Versjoneringdetaljer

  • Commit hash for siste oppdatering: 9b13bbd
  • Dato for siste oppdateting: 2023-11-09
  • Navn på commit: ''friken broken build'
×