version 1.31, 2024/03/28 19:50:37 |
version 1.32, 2024/03/28 20:02:23 |
Line 13 function validateMsg(msg) { |
|
Line 13 function validateMsg(msg) { |
|
return (msg.length>5); |
return (msg.length>5); |
} |
} |
|
|
//async function postData() { |
|
// const formData = new FormData(form); |
|
// try { |
|
// const response = await fetch("/feedbk/", { |
|
// method: "POST", |
|
// body: formData, |
|
// }); |
|
// console.log(await response.json()); |
|
// } catch (e) { |
|
// console.error(e); |
|
// } |
|
//} |
|
|
|
async function sendData() { |
async function sendData() { |
var er = 0; |
var er = 0; |
em = document.getElementById("cfem").value, |
em = document.getElementById("cfem").value, |
Line 57 async function sendData() { |
|
Line 44 async function sendData() { |
|
callback: function(token) { |
callback: function(token) { |
ii.textContent="Sent"; |
ii.textContent="Sent"; |
console.log(`Challenge Success ${token}`); |
console.log(`Challenge Success ${token}`); |
// postData(); |
/* --------------------- */ |
var data="", |
//var data="", |
status=""; |
// status=""; |
$.post("/feedbk/", token, function(data, status){ |
//$.post("/feedbk/", token, function(data, status){ |
console.log("Data: " + data + "\nStatus: " + status); |
// console.log("Data: " + data + "\nStatus: " + status); |
}); |
//}); |
|
/* --------------------- */ |
|
var response=""; |
|
fetch('/feedbk/', { |
|
method: 'POST', |
|
headers: { |
|
'Accept': 'application/json', |
|
'Content-Type': 'application/json' |
|
}, |
|
body: JSON.stringify({ "cfem": "a@b.ru", "cfsu" : "subject", "cfme" : "message", "cfto" : "token" }) |
|
}) |
|
.then(response => response.json()) |
|
.then(response => console.log(JSON.stringify(response))) |
|
|
|
|
}, |
}, |