async function sendMe() { let r =await fetch('/test', {method: 'POST', body: JSON.stringify({a:"aaaaa"}), headers: {'Content-type': 'application/json; charset=UTF-8'}}) let res = await r.json(); console.log(res["a"]); }