ssnau / blog

1 stars 0 forks source link

FE Snippets #4

Open ssnau opened 7 years ago

ssnau commented 7 years ago

Fetch Post

 fetch("/url", {
        method: "POST",
        headers: {
          'Content-Type': 'application/json'
        },
        body: JSON.stringify({
          text: this.text || ''
        })
    })
    .then((res) => res.text())
    .then((text) => alert(text))