version 1.44, 2024/03/29 18:47:26 |
version 1.54, 2024/03/29 20:59:52 |
Line 51 async function sendData() { |
|
Line 51 async function sendData() { |
|
// feed=JSON.stringify(ob); |
// feed=JSON.stringify(ob); |
//$.post("/feedbk/", feed, function(data, status){ |
//$.post("/feedbk/", feed, function(data, status){ |
// console.log("Data: " + data + "\nStatus: " + status); |
// console.log("Data: " + data + "\nStatus: " + status); |
|
// console.log(data); |
|
// console.log("JSON: " + JSON.parse(data) ); |
|
// |
//}); |
//}); |
/* --------------------- */ |
/* --------------------- */ |
//ovar re=""; |
//ovar re=""; |
|
|
const dataToSend = JSON.stringify({"email": "hey@mail.com", "password": "101010"}); |
const dataToSend = JSON.stringify({"email": "hey@mail.com", "password": "101010"}); |
let dataReceived = ""; |
let dataReceived = ""; |
fetch("/feedbk/", { |
fetch("/feedbk/", { |
credentials: "same-origin", |
credentials: "same-origin", |
mode: "same-origin", |
mode: "same-origin", |
method: "post", |
method: "post", |
headers: { "Content-Type": "application/json" }, |
headers: { "Content-Type": "application/json" }, |
Line 67 fetch("/feedbk/", { |
|
Line 69 fetch("/feedbk/", { |
|
.then(resp => { |
.then(resp => { |
if (resp.status === 200) { |
if (resp.status === 200) { |
return resp.json() |
return resp.json() |
} else { |
} else { |
console.log("Status: " + resp.status) |
console.log("Status: " + resp.status) |
return Promise.reject("server") |
return Promise.reject("server") |
} |
} |
}) |
}) |
.then(dataJson => { |
.then(dataJson => { |
|
console.log(dataJson); |
dataReceived = JSON.parse(dataJson) |
dataReceived = JSON.parse(dataJson) |
}) |
}) |
.catch(err => { |
.catch(err => { |
if (err === "server") return |
if (err === "server") return |
console.log(err) |
console.log(err) |
}) |
}) |
|
|
console.log(`Received: ${dataReceived}`) |
console.log(`Received: ${dataReceived}`) |
|
|
|
|