Dup Ver Goto 📝

Fetch and POST

PT2/lang/js/web/fetch js fetch post does not exist
To
21 lines, 35 words, 436 chars Page 'FetchPost' does not exist.

Example

  fetch("be.php", {
        headers: {
          'Accept': 'application/json',
          'Content-Type': 'application/json'
        },
        method: "POST",
        body: JSON.stringify({req:"put",url})
      }
    )
    .then(response => {
      if( response.ok ) {
        console.log("ok")
        window.location.reload()
      }
      return response.text()
    }).then(text=> {
      console.log(text)
    })