[Vuejs]-Vuejs send data after close page, browser

0👍

let body = this.body;
      
let headers = {
        type: 'application/json'
};
let blob = new Blob([JSON.stringify(body)], headers);
navigator.sendBeacon('http://127.0.0.1:8000/form/', blob);

This work for me

Leave a comment